source: gs3-extensions/webswing/trunk/INSTALL.sh@ 36487

Last change on this file since 36487 was 36487, checked in by davidb, 20 months ago

Crude script to copy needed parts out the web/ext/webswing

  • Property svn:executable set to *
File size: 765 bytes
Line 
1#!/bin/bash
2
3if [ ! -d ../../web/ext/webswing ] ; then
4 echo "Creating directory:"
5 echo " ../../web/ext/webswing"
6
7 mkdir ../../web/ext/webswing
8 mkdir ../../web/ext/webswing/etc
9fi
10
11echo "Copying web/etc/catalina-extra.properties => ../../web/ext/webswing/etc/."
12/bin/cp web/etc/catalina-opts-extra.args ../../web/ext/webswing/etc/.
13
14
15echo "Copying web/etc/webswing.properties => ../../web/ext/webswing/etc/."
16/bin/cp web/etc/webswing.properties ../../web/ext/webswing/etc/.
17echo "Copying web/etc/webswing.config => ../../web/ext/webswing/etc/."
18/bin/cp web/etc/webswing.config ../../web/ext/webswing/etc/.
19
20
21for d in api fonts ssl ; do
22 echo "Copying web/$d/ => ../../web/ext/webswing/."
23 /bin/cp -r web/$d ../../web/ext/webswing/.
24done
Note: See TracBrowser for help on using the repository browser.