ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/Deliantra-Client/mkmanifest
Revision: 1.3
Committed: Sun Aug 13 03:22:15 2006 UTC (17 years, 9 months ago) by root
Branch: MAIN
Changes since 1.2: +3 -2 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     pod/*.pod
16 root 1.1 do
17     echo "$file"
18     done
19 root 1.3 ) | uniq >MANIFEST~ && mv MANIFEST~ MANIFEST
20 root 1.1
21