From 59d1b38b8abc7beb744672a7ef3883c9f714b82e Mon Sep 17 00:00:00 2001 From: Chris Koeritz Date: Sun, 12 Feb 2012 14:09:43 -0500 Subject: [PATCH] updated to be a little less panicky about things we expect sometimes. --- examples/custom_overrides/fred/java_profile.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/custom_overrides/fred/java_profile.sh b/examples/custom_overrides/fred/java_profile.sh index d5cbc503..94c40f86 100644 --- a/examples/custom_overrides/fred/java_profile.sh +++ b/examples/custom_overrides/fred/java_profile.sh @@ -61,7 +61,7 @@ fi # last thing is to tell them we couldn't find it. if [ ! -d "$JAVA_HOME" ]; then if [ ! -z "$(which java)" ]; then - echo "JAVA_HOME unknown, but java is in path." + echo "okay, java is in the path (JAVA_HOME unknown)." else intuition_failure JAVA_HOME unset JAVA_BIN_PIECE @@ -96,7 +96,7 @@ fi # final option is to whine. if [ ! -d "$ECLIPSE_DIR" ]; then if [ ! -z "$(which eclipse)" ]; then - echo "ECLIPSE_DIR unknown, but eclipse is in path." + echo "okay, eclipse is in the path (ECLIPSE_DIR unknown)." else intuition_failure ECLIPSE_DIR; fi -- 2.34.1