Skip to content

Commit

Permalink
fixing the bash bldjar script as well
Browse files Browse the repository at this point in the history
  • Loading branch information
abekornelis committed Oct 2, 2024
1 parent 72b1660 commit eb3e957
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bash/bldjar
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ cd ../jar

# compile z390 java sources to class vm object code
echo "Compiling ../src/*.java into jar directory"
javac -d . -g:none ../src/*.java
javac -d . -g:none -source 1.8 -target 1.8 ../src/*.java
ec=$?
echo "The exit code of the javac command is $ec"
if [ $ec -ne 0 ]; then echo "bldjar: Error compiling Java sources"; exit $ec; fi
Expand Down

0 comments on commit eb3e957

Please sign in to comment.