From b0efc3769273f40237f0568aa6f12839796d6d2f Mon Sep 17 00:00:00 2001 From: Chris Koeritz Date: Mon, 12 Mar 2012 12:33:47 -0400 Subject: [PATCH] updated --- 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 612308e6..b7244aa2 100755 --- a/examples/custom_overrides/fred/java_profile.sh +++ b/examples/custom_overrides/fred/java_profile.sh @@ -121,14 +121,14 @@ if [ ! -z "$JAVA_HOME" ]; then if [ ! -z "$(uname -a | grep -i cygwin)" ]; then j=$(echo $j | sed -e 's/^\(.\):/\/cygdrive\/\1/') fi - export PATH=$PATH:$j/$JAVA_BIN_PIECE + export PATH=$j/$JAVA_BIN_PIECE:$PATH fi if [ ! -z "$ECLIPSE_DIR" ]; then e="$ECLIPSE_DIR" if [ ! -z "$(uname -a | grep -i cygwin)" ]; then e=$(echo $e | sed -e 's/^\(.\):/\/cygdrive\/\1/') fi - export PATH=$PATH:$e + export PATH=$e:$PATH fi ############################ -- 2.34.1