Subversion Repositories DevTools

Rev

Rev 243 | Rev 4732 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 243 Rev 371
Line 1... Line 1...
1
#! /usr/bin/bash
1
#! /bin/bash
2
########################################################################
2
########################################################################
3
#
3
#
4
#   JATS Post Installation Setup for SOLARIS/LINUX
4
#   JATS Post Installation Setup for SOLARIS/LINUX
5
#
5
#
6
#   This command is to be executed in the directory in which it is found
6
#   This command is to be executed in the directory in which it is found
Line 10... Line 10...
10
########################################################################
10
########################################################################
11
#
11
#
12
#
12
#
13
#   Sanity test
13
#   Sanity test
14
#
14
#
-
 
15
echo "JATS setup"
15
if [ ! -d ./TOOLS ] ; then
16
if [ ! -d ./TOOLS ] ; then
16
    echo "ERROR: TOOLS directory not found"
17
    echo "ERROR: TOOLS directory not found"
17
    exit 1
18
    exit 1
18
fi
19
fi
19
 
20