Merge pull request #1041 from mbilker/script-fix

Allow additional parameters specified on command line
This commit is contained in:
Ben Gotow 2016-01-19 16:42:31 -08:00
commit ec22f7bebf

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 $?