source: gs3-extensions/mars-src/trunk/ADD-SERVICE.sh@ 35181

Last change on this file since 35181 was 35181, checked in by davidb, 3 years ago

Echo statements at end of script added in

  • Property svn:executable set to *
File size: 581 bytes
Line 
1#!/bin/bash
2
3gsdlsrcdir=src/java/org/greenstone/gsdl3
4
5file_list=`cat java-src-file-list.txt`
6
7for f in $file_list ; do
8 echo "Adding $gsdlsrcdir/$f to gsdl3 java code-base"
9
10 /bin/cp "$gsdlsrcdir/$f" "../../$gsdlsrcdir/$f"
11done
12
13#classesdir=web/WEB-INF/classes
14
15#prop_list=`cat prop-file-list.txt`
16#
17#for f in $prop_list ; do
18# echo "Adding properties/$f to gsdl3 properties area"
19#
20# /bin/cp "properties/$f" "../../$classesdir/$f"
21#done
22
23echo ""
24echo "Assuming you already have a core Greenstone3 compiled up, next enter:"
25echo " cd ../.."
26echo " ant compile-core"
27echo ""
Note: See TracBrowser for help on using the repository browser.