source: other-projects/meddle/trunk/INSTALL.sh@ 31608

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

Scripts to setup and install code in web area

  • Property svn:executable set to *
File size: 506 bytes
Line 
1
2if [ "x$MEDDLE_HOME" = "x" ] ; then
3 . ./SETUP.bash
4fi
5
6if [ ! -d "$MEDDLE_WEBDIR" ] ; then
7 echo "Creating cgi-bin directory: $MEDDLE_WEBDIR"
8 mkdir "$MEDDLE_WEBDIR"
9fi
10
11if [ ! -d "$MEDDLE_CGIDIR" ] ; then
12 echo "Creating cgi-bin directory: $MEDDLE_CGIDIR"
13 mkdir "$MEDDLE_CGIDIR"
14fi
15
16echo "Installing/Updating $MEDDLE_WEBDIR"
17/bin/cp index.* "$MEDDLE_WEBDIR/."
18/bin/cp meddle-fixup.js "$MEDDLE_WEBDIR/."
19
20echo "Installing/Updating $MEDDLE_CGIDIR"
21/bin/cp nph-proxy-meddle.cgi "$MEDDLE_CGIDIR/."
22
23
Note: See TracBrowser for help on using the repository browser.