mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-12-31 04:39:36 +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
b95f1f7cb4
commit
560f659643
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