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
I have a shell script with the following script
#!/bin/bash set -e ./node_modules/.bin/pug hotsite/index.pug \ --out docs/ \ --silent \ --watch hotsite/index.pug
unfortunately, when I stop script typing ctrl+c, I receive the following error on npm
Any ideas how to proceed to avoid this behavior?
The text was updated successfully, but these errors were encountered:
Same here.
Sorry, something went wrong.
Anyone found a workaround for this?
probably can trick it to exit by || exit 0?
|| exit 0
$ pug foo bar --out /tmp --watch || exit 0
No branches or pull requests
I have a shell script with the following script
unfortunately, when I stop script typing ctrl+c, I receive the following error on npm
Any ideas how to proceed to avoid this behavior?
The text was updated successfully, but these errors were encountered: