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

# 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 pod/*.pod
16 do
17 echo "$file"
18 done
19 ) | uniq >MANIFEST~ && mv MANIFEST~ MANIFEST
20
21