Skip to content

Commit

Permalink
modify default transpiler flags
Browse files Browse the repository at this point in the history
  • Loading branch information
idleberg committed Nov 14, 2016
1 parent 04399e4 commit ea2efc1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion scripts/build-wine.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@ NSL_JAR=$(printf %q "${PROGRAMS_UNIX%?}/NSIS/NSL/nsL.jar")
echo "Running Java"
echo

eval java -jar "$NSL_JAR" /nopause /nomake $@
eval java -jar "$NSL_JAR" /nomake $@
2 changes: 1 addition & 1 deletion scripts/build.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ set args=
if not "%~2"=="" goto loop

if defined nsis_compiler (
java.exe -jar "%nsis_compiler%\NSL\nsL.jar" /nopause /nomake %args%
java.exe -jar "%nsis_compiler%\NSL\nsL.jar" /nomake %args%
) else (
echo "Error: Make sure Java is in your PATH environmental variable and nsL Assembler is installed"
)
2 changes: 1 addition & 1 deletion scripts/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ NSL_JAR=
if [ -z $NSL_JAR ]; then
echo "Error: nsL.jar not defined in build script"
elif [ -f $NSL_JAR ]; then
eval java -jar $NSL_JAR /nopause /nomake $@
eval java -jar $NSL_JAR /nomake $@
exit 0
else
echo "Error: '$NSL_JAR' not found"
Expand Down

0 comments on commit ea2efc1

Please sign in to comment.