using case-insensitive check on drive mounts, since apparently they are not always
authorChris Koeritz <fred@gruntose.com>
Tue, 13 Mar 2012 20:48:00 +0000 (16:48 -0400)
committerChris Koeritz <fred@gruntose.com>
Tue, 13 Mar 2012 20:48:00 +0000 (16:48 -0400)
listed in lower-case in /proc/mounts.

examples/custom_overrides/fred/java_profile.sh [changed mode: 0755->0644]

old mode 100755 (executable)
new mode 100644 (file)
index b7244aa..67cb90f
@@ -53,7 +53,7 @@ if [ ! -d "$JAVA_HOME" ]; then
   JAVA_HOME="$(ls -d c:/tools/*jdk* 2>/dev/null)"
 fi
 if [ ! -d "$JAVA_HOME" ]; then
-  if [ ! -z "$(grep 'd:' /proc/mounts 2>/dev/null)" ]; then
+  if [ ! -z "$(grep -i 'd:' /proc/mounts 2>/dev/null)" ]; then
     # try using a windows version.
     JAVA_HOME="$(ls -d d:/tools/*jdk* 2>/dev/null)"
   fi
@@ -89,12 +89,12 @@ if [ ! -d "$ECLIPSE_DIR" ]; then
   ECLIPSE_DIR="c:/tools/eclipse"
 fi
 if [ ! -d "$ECLIPSE_DIR" ]; then
-  if [ ! -z "$(grep 'd:' /proc/mounts)" ]; then
+  if [ ! -z "$(grep -i 'd:' /proc/mounts)" ]; then
     ECLIPSE_DIR="d:/tools/eclipse"
   fi
 fi
 if [ ! -d "$ECLIPSE_DIR" ]; then
-  if [ ! -z "$(grep 'e:' /proc/mounts)" ]; then
+  if [ ! -z "$(grep -i 'e:' /proc/mounts)" ]; then
     ECLIPSE_DIR="e:/tools/eclipse"
   fi
 fi