diff --git a/scripts/code.sh b/scripts/code.sh index 33b084826ad..f88b7bb91a2 100755 --- a/scripts/code.sh +++ b/scripts/code.sh @@ -11,7 +11,7 @@ function code() { cd $ROOT if [[ "$OSTYPE" == "darwin"* ]]; then - NAME=`node -p "require('./product.json').nameShort"` + NAME=`node -p "require('./product.json').nameLong"` CODE="./.build/electron/$NAME.app/Contents/MacOS/Electron" else NAME=`node -p "require('./product.json').applicationName"` diff --git a/scripts/test.sh b/scripts/test.sh index 1d98a613577..fb2b2552cae 100755 --- a/scripts/test.sh +++ b/scripts/test.sh @@ -11,7 +11,7 @@ fi cd $ROOT if [[ "$OSTYPE" == "darwin"* ]]; then - NAME=`node -p "require('./product.json').nameShort"` + NAME=`node -p "require('./product.json').nameLong"` CODE="./.build/electron/$NAME.app/Contents/MacOS/Electron" else NAME=`node -p "require('./product.json').applicationName"`