1
Fork 0

node: output npma usage on stderr

This commit is contained in:
Alan Faubert 2019-07-22 17:53:06 -04:00
parent cbfc703215
commit 71686bef84
1 changed files with 1 additions and 1 deletions

View File

@ -1,5 +1,5 @@
#!/bin/bash
if [ $# = 0 ]; then echo 'Arguments: <executable file>...'; exit 1; fi
if [ $# = 0 ]; then >&2 echo 'Arguments: <executable file>...'; exit 1; fi
DIR="$PWD"
for BIN in "$@"; do
while :; do