File tree 3 files changed +3
-3
lines changed
3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -26,4 +26,4 @@ NSL_JAR=$(printf %q "${PROGRAMS_UNIX%?}/NSIS/NSL/nsL.jar")
26
26
echo " Running Java"
27
27
echo
28
28
29
- eval java -jar " $NSL_JAR " /nomake $@
29
+ eval java -jar " $NSL_JAR " /nomake /nopause $@
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ if not "%~2"=="" goto loop
31
31
32
32
:build
33
33
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%
35
35
) else (
36
36
echo " Error: Make sure Java is in your PATH environmental variable and nsL Assembler is installed"
37
37
)
Original file line number Diff line number Diff line change 6
6
if [ -z $NSL_JAR ]; then
7
7
echo " Error: nsL.jar not defined in build script"
8
8
elif [ -f $NSL_JAR ]; then
9
- eval java -jar $NSL_JAR /nomake $@
9
+ eval java -jar $NSL_JAR /nomake /nopause $@
10
10
exit 0
11
11
else
12
12
echo " Error: '$NSL_JAR ' not found"
You can’t perform that action at this time.
0 commit comments