You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/usr/bin/env: ‘node --no-warnings’: No such file or directory
/usr/bin/env: use -[v]S to pass options in shebang lines
it seems problem is that Linux only allows one argument to be passed after #! (discussed here), so it's ignoring everything after --no-warnings. Getting rid of that fixes it, anyway!
The text was updated successfully, but these errors were encountered:
closes#309, refs #307, refs nodejs/node#32876
- removes all the weird flags from the shebang which explode various OSes
- instead use process.removeAllListeners() which should prevent warnings from being displayed using the node API and therefore in an OS-agnostic way
Steps to reproduce:
see
it seems problem is that Linux only allows one argument to be passed after
#!
(discussed here), so it's ignoring everything after--no-warnings
. Getting rid of that fixes it, anyway!The text was updated successfully, but these errors were encountered: