Skip to content

Commit

Permalink
Standardized usage of !
Browse files Browse the repository at this point in the history
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@9723 72102866-910b-0410-8b05-ffd578937521
  • Loading branch information
Nicola Pero committed Apr 27, 2001
1 parent fa68150 commit 0a278ef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions java-executable.template
Original file line number Diff line number Diff line change
Expand Up @@ -99,10 +99,10 @@ export CLASSPATH
# Find java
#
java_vm=java
if ! [ -z "$JAVA_HOME" ]; then
if [ ! -z "$JAVA_HOME" ]; then
java_vm=$(JAVA_HOME)/bin/java
else
if ! [ -z "$JDK_HOME" ]; then
if [ ! -z "$JDK_HOME" ]; then
java_vm=$(JDK_HOME)/bin/java
fi
fi
Expand Down

0 comments on commit 0a278ef

Please sign in to comment.