source: trunk/DEVEL.sh.in@ 514

Last change on this file since 514 was 503, checked in by davidb, 11 years ago

Improved logic

  • Property svn:executable set to *
File size: 577 bytes
Line 
1
2
3which javac 2>&1 >/dev/null
4
5if [ $? != 0 ] ; then
6 export JAVA_HOME="**Replace with your value for JAVA home**"
7 export PATH=$JAVA_HOME/bin/:$PATH
8
9 echo "+ Set JAVA_HOME to $JAVA_HOME and updated path"
10fi
11
12
13which ant 2>&1 >/dev/null
14if [ $? != 0 ] ; then
15 export ANT_HOME="**Relplace with your value for ANT home**"
16 export PATH=$ANT_HOME/bin/:$PATH
17
18 echo "+ Set ANT_HOME to $ANT_HOME and updated path"
19fi
20
21echo "-----"
22echo "To create an Expeditee distribution, type:"
23echo ""
24echo " ant fresh_dist_exp"
25echo ""
26echo "or:"
27echo " ant fresh_dist_apollo"
28
29echo ""
30
Note: See TracBrowser for help on using the repository browser.