updated with progfiles paths.
authorChris Koeritz <fred@gruntose.com>
Tue, 12 Nov 2013 18:36:45 +0000 (13:36 -0500)
committerChris Koeritz <fred@gruntose.com>
Tue, 12 Nov 2013 18:36:45 +0000 (13:36 -0500)
customizing/fred/java_profile.sh

index 8c731ecc8b52ac403fabcb603968bf09dd5c5a55..69de3e2f941f8d05f0a3fa91c110b606774f1216 100644 (file)
@@ -8,17 +8,6 @@
 
 source $FEISTY_MEOW_SCRIPTS/core/functions.sh
 
-#function whichable()
-#{
-#  to_find="$1"; shift
-#  which which &>/dev/null
-#  if [ $? -ne 0 ]; then
-#    # there is no which command here.  we produce nothing due to this.
-#    echo
-#  fi
-#  echo $(which $to_find)
-#}
-
 # this reports when we have totally failed to figure out where a folder
 # is actually located on the machine.
 function intuition_failure()
@@ -54,6 +43,12 @@ fi
 if [ ! -d "$JAVA_HOME" ]; then
   JAVA_HOME="$(ls -d c:/tools/*jdk* 2>/dev/null)"
 fi
+if [ ! -d "$JAVA_HOME" ]; then
+  JAVA_HOME="$(ls -d "c:/Program Files"/*jdk* 2>/dev/null)"
+fi
+if [ ! -d "$JAVA_HOME" ]; then
+  JAVA_HOME="$(ls -d "c:/Program Files (x86)"/*jdk* 2>/dev/null)"
+fi
 if [ ! -d "$JAVA_HOME" ]; then
   if [ ! -z "$(grep -i 'd:' /proc/mounts 2>/dev/null)" ]; then
     # try using a windows version.
@@ -136,3 +131,5 @@ fi
 ############################
 
 
+echo here at end of script java home is $JAVA_HOME
+echo and eclipse is $ECLIPSE_DIR