ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/Deliantra-Client/mkmanifest
Revision: 1.4
Committed: Mon Aug 14 01:54:08 2006 UTC (17 years, 9 months ago) by root
Branch: MAIN
CVS Tags: rel-0_97, rel-0_98, rel-0_52, rel-0_53, rel-0_51, rel-0_5
Changes since 1.3: +1 -0 lines
Log Message:
*** empty log message ***

File Contents

# Content
1 #!/bin/sh
2
3 (
4 <MANIFEST grep -v ^resources/ | grep -v ^pod/
5 echo
6 for file in \
7 resources/*.png \
8 resources/fonts/*.ttf \
9 resources/sounds/*.wav \
10 resources/sounds/*.ogg \
11 resources/sounds/config \
12 resources/music/*.ogg \
13 resources/ui/resist/*.png \
14 resources/pod/*.png \
15 resources/arch/*.png \
16 pod/*.pod
17 do
18 echo "$file"
19 done
20 ) | uniq >MANIFEST~ && mv MANIFEST~ MANIFEST
21
22