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

# User Rev Content
1 root 1.1 #!/bin/sh
2    
3     (
4 root 1.3 <MANIFEST grep -v ^resources/ | grep -v ^pod/
5     echo
6 root 1.1 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 root 1.2 resources/pod/*.png \
15 root 1.4 resources/arch/*.png \
16 root 1.2 pod/*.pod
17 root 1.1 do
18     echo "$file"
19     done
20 root 1.3 ) | uniq >MANIFEST~ && mv MANIFEST~ MANIFEST
21 root 1.1
22