blob: f323ebc80bda9b312f2fe28f580ddda126e3c1db (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
--- setenv.sh.orig 2013-02-16 16:26:06.028821203 +1200
+++ setenv.sh 2013-02-16 16:24:10.728652087 +1200
@@ -1,8 +1,8 @@
-JAVA_HOME=
-BGBILLING_SERVER_DIR=.
+JAVA_HOME="$JAVA_HOME"
+BGBILLING_SERVER_DIR="$BGBILLING_SERVER_DIR"
if [ -z "$JAVA_HOME" ]; then
echo "The JAVA_HOME environment variable is not defined"
echo "This environment variable is needed to run this program"
exit 1
-fi
\ No newline at end of file
+fi
|