mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-12-27 19:07:15 +08:00
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:
parent
7c749468e5
commit
b40c2465f6
1 changed files with 1 additions and 1 deletions
2
N1.sh
2
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 $?
|
||||
|
|
Loading…
Reference in a new issue