ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/COMP/DBS/Servers/JavaServer/setup.sh
Revision: 1.1
Committed: Fri Oct 13 20:31:46 2006 UTC (18 years, 7 months ago) by sekhri
Content type: application/x-sh
Branch: MAIN
Log Message:
Added xml parsing for insert apis

File Contents

# User Rev Content
1 sekhri 1.1 ret=0
2     if [ "${JAVA_HOME}" == "" ]; then
3     echo "Error! Please set your JAVA_HOME variable and source this file again"
4     ret=1
5     fi
6     if [ "${ANT_HOME}" == "" ]; then
7     echo "Error! Please set your ANT_HOME variable and source this file again"
8     ret=1
9     fi
10     if [ $ret == 0 ]; then
11     export PATH=${JAVA_HOME}/bin:${ANT_HOME}/bin:$PATH
12     alias ant='ant --noconfig'
13     fi