We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
$ cat package.json | grep esm /bin/sh: 1: set: Illegal option -o pipefail at file:///tmp/skrypt.mjs:3:8
after changing file index.mjs
index.mjs
let child = exec('set -euo pipefail;' + cmd, options)
to
let child = exec('set -eu;' + cmd, options)
it works as expected. My default shell is bash, I'm using Konsole 19.12.3
bash
Konsole 19.12.3
The text was updated successfully, but these errors were encountered:
By default nodejs using /bin/sh
Add to beginning of file $.shell = ‘/bin/bash’
Sorry, something went wrong.
Bash now is used by default- fixed.
No branches or pull requests
$ cat package.json | grep esm /bin/sh: 1: set: Illegal option -o pipefail at file:///tmp/skrypt.mjs:3:8
after changing file
index.mjs
to
it works as expected.
My default shell is
bash
, I'm usingKonsole 19.12.3
The text was updated successfully, but these errors were encountered: