You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@gump.apache.org by le...@apache.org on 2005/04/16 20:29:18 UTC

svn commit: r161590 - gump/branches/Gump3/giraffe-settings.sh

Author: leosimons
Date: Sat Apr 16 11:29:18 2005
New Revision: 161590

URL: http://svn.apache.org/viewcvs?view=rev&rev=161590
Log:
My environment check was broken

Modified:
    gump/branches/Gump3/giraffe-settings.sh

Modified: gump/branches/Gump3/giraffe-settings.sh
URL: http://svn.apache.org/viewcvs/gump/branches/Gump3/giraffe-settings.sh?view=diff&r1=161589&r2=161590
==============================================================================
--- gump/branches/Gump3/giraffe-settings.sh (original)
+++ gump/branches/Gump3/giraffe-settings.sh Sat Apr 16 11:29:18 2005
@@ -1,8 +1,9 @@
+cygwin=""
 case "`uname`" in
-  CYGWIN*) cygwin=true ;;
+  CYGWIN*) cygwin="true" ;;
 esac
 
-if $cygwin; then
+if [[ "$cygwin" == "true" ]]; then
   export JAVA_HOME=/cygdrive/c/j2sdk1.4.2_08
 else
   export JAVA_HOME=/usr/lib/j2se/1.4