fix(N1.sh): allow additional parameters specified on command line

This prevents Electron saying it cannot find the main entrypoint, when
using the `--test -s` parameters on the command line to spec test plugins.
This commit is contained in:
mbilker 2016-01-15 12:12:15 -05:00
parent 7c749468e5
commit b40c2465f6

2
N1.sh
View file

@ -22,5 +22,5 @@ if [ ! -e "$ELECTRON_PATH" ]; then
exit 1
fi
$ELECTRON_PATH --executed-from="$(pwd)" --pid=$$ "$@" $N1_PATH
$ELECTRON_PATH --executed-from="$(pwd)" --pid=$$ $N1_PATH "$@"
exit $?