source: other-projects/hathitrust/wcsa/vol-checker/INSTALL.sh

Last change on this file was 31328, checked in by davidb, 7 years ago

Install the necessary files in the jetty webapps dir

  • Property svn:executable set to *
File size: 422 bytes
Line 
1#!/bin/bash
2
3if [ "x$VOL_CHECKER_HOME" = "x" ] ; then
4 echo "Error: VOL_CHECKER_HOME not set. Have you sourced ./SETUP.bash?" 1>&2
5 exit 1
6fi
7
8if [ ! -d "$jetty_dist/webapps/vol-checker" ] ; then
9 echo "Creating $jetty_dist/webapps/vol-checker"
10 mkdir "$jetty_dist/webapps/vol-checker"
11fi
12
13echo "Copying WebContent/* to $jetty_dist/webapps/vol-checker/."
14/bin/cp -r WebContent/* "$jetty_dist/webapps/vol-checker/."
15
16
Note: See TracBrowser for help on using the repository browser.