Skip to content

Commit

Permalink
minor corrections to, linux build.sh file
Browse files Browse the repository at this point in the history
  • Loading branch information
mukulga committed Mar 25, 2023
1 parent 28169ad commit 25b9c33
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ if [ "$JAVA_HOME" = "" ]; then
exit 1
fi

if [-f "$JAVA_HOME/lib/tools.jar" ]; then
if [ -f "$JAVA_HOME/lib/tools.jar" ]; then
CLASSPATH=$CLASSPATH:$JAVA_HOME/lib/tools.jar
fi

Expand All @@ -66,7 +66,7 @@ CLASSPATH=$CLASSPATH:$JAVA_HOME/lib/tools.jar

# Since Linux has scoped environments, we don't need explicit temporary vars.
# Default is to use a copy of ant bundled with xalan-java.
if [ "$ANT_HOME"=="" ]; then
if [ "$ANT_HOME" = "" ]; then
ANT_HOME=.
fi

Expand Down

0 comments on commit 25b9c33

Please sign in to comment.