source: trunk/expeditee-setup.sh@ 526

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

Moved scripts out of 'bin' directory, which with Eclipse in use can be nuked

  • Property svn:executable set to *
File size: 449 bytes
Line 
1
2
3which >/dev/null java 2>&1
4
5if [ $? != 0 ] ; then
6 echo "Unable to find a Java runtime"
7fi
8
9expeditee_home=`pwd`;
10
11if [ -z "$EXPEDITEE_HOME" ] ; then
12 export EXPEDITEE_HOME="$expeditee_home"
13 echo "Setting EXPEDITEE_HOME: "
14 echo " $EXPEDITEE_HOME"
15
16 export PATH="$EXPEDITEE_HOME/script:$PATH"
17 echo "Updating PATH to include Expeditee executables"
18fi
19
20
21echo "-----"
22echo "To run the Expeditee Browser, type:"
23echo " expeditee"
24
25echo ""
26
Note: See TracBrowser for help on using the repository browser.