source: trunk/expeditee-devel.bash.in

Last change on this file was 803, checked in by davidb, 10 years ago

Overlooked file in the sh -> bash file renames

  • Property svn:executable set to *
File size: 693 bytes
RevLine 
[496]1
2
[521]3which javac >/dev/null 2>&1
[496]4
[503]5if [ $? != 0 ] ; then
6 export JAVA_HOME="**Replace with your value for JAVA home**"
7 export PATH=$JAVA_HOME/bin/:$PATH
[496]8
[503]9 echo "+ Set JAVA_HOME to $JAVA_HOME and updated path"
[521]10
11 cygpath 2>/dev/null
12 if [ $? != 0 ] ; then
13 echo "Detected runing in Cygwin environment => Changing JAVA_HOME to Windows native format"
14 export JAVA_HOME=`cygpath -w "$JAVA_HOME"`
15 fi
[503]16fi
[496]17
[503]18
[521]19source ./expeditee-setup.sh
[503]20
[521]21export ANT_HOME="$expeditee_home/dev/packages/apache-ant-1.9.2"
22export PATH="$ANT_HOME/bin/:$PATH"
[503]23
[521]24echo "+ Set ANT_HOME to $ANT_HOME and updated path"
25
26
[496]27echo "-----"
28echo "To create an Expeditee distribution, type:"
29echo ""
[521]30echo " ant build"
[496]31
32echo ""
33
Note: See TracBrowser for help on using the repository browser.