Skip to content

Commit 49320a0

Browse files
committed
fix default nsL build flags
1 parent b22e49d commit 49320a0

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

scripts/build-wine.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,4 @@ NSL_JAR=$(printf %q "${PROGRAMS_UNIX%?}/NSIS/NSL/nsL.jar")
2626
echo "Running Java"
2727
echo
2828

29-
eval java -jar "$NSL_JAR" /nomake $@
29+
eval java -jar "$NSL_JAR" /nomake /nopause $@

scripts/build.cmd

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ if not "%~2"=="" goto loop
3131

3232
:build
3333
if defined nsis_path (
34-
java.exe -jar "%nsis_path%\NSL\nsL.jar" /nomake %args%
34+
java.exe -jar "%nsis_path%\NSL\nsL.jar" /nomake /nopause %args%
3535
) else (
3636
echo "Error: Make sure Java is in your PATH environmental variable and nsL Assembler is installed"
3737
)

scripts/build.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ NSL_JAR=
66
if [ -z $NSL_JAR ]; then
77
echo "Error: nsL.jar not defined in build script"
88
elif [ -f $NSL_JAR ]; then
9-
eval java -jar $NSL_JAR /nomake $@
9+
eval java -jar $NSL_JAR /nomake /nopause $@
1010
exit 0
1111
else
1212
echo "Error: '$NSL_JAR' not found"

0 commit comments

Comments
 (0)