source: gs3-extensions/i-greenstone-server/trunk/src/CUSTOMIZATION.sh@ 28679

Last change on this file since 28679 was 26644, checked in by davidb, 11 years ago

Script updated to print out the correct message as to what to do next\!

File size: 813 bytes
Line 
1#/bin/bash
2
3
4
5
6#if [ ! -f AndroidManifest.xml.orig ] ; then
7# echo "Customizing AndroidManifest.xml"
8# /bin/mv AndroidManifest.xml AndroidManifest.xml.orig
9# /bin/cp ../../CUSTOMIZATION/AndroidManifest.xml .
10#fi
11
12
13cd CUSTOMIZATION
14
15
16for td in res src assets; do
17
18 cfiles=`find $td -type f`
19
20 for cfile in $cfiles ; do
21 echo "Overwriting $cfile"
22 /bin/cp $cfile ../i-jetty-3.1/i-jetty-ui/$cfile
23 done
24
25done
26
27cd ..
28
29# For when already in main i-jetty-ui area
30# cd res
31#
32#
33#for d in drawable-hdpi drawable-mdpi ; do
34# cd $d
35# if [ ! -d orig ] ; then
36# echo "Customizing images in $d"
37# mkdir orig
38# /bin/mv *.* orig/.
39# /bin/cp -i ../../../../CUSTOMIZATION/drawable-hdpi/* .
40# fi
41# cd ..
42#done
43
44#cd ..
45
46##cd ../..
47
48echo
49echo "***"
50echo "* Now run ./REBRAND.sh"
51echo "***"
52echo
Note: See TracBrowser for help on using the repository browser.