From b40c2465f6763b3b7ce92124dde2e98c62029d9c Mon Sep 17 00:00:00 2001 From: mbilker Date: Fri, 15 Jan 2016 12:12:15 -0500 Subject: [PATCH] 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. --- N1.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/N1.sh b/N1.sh index b562ae7c2..a995798f7 100755 --- a/N1.sh +++ b/N1.sh @@ -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 $?