ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/Deliantra-Client/mkmanifest
Revision: 1.5
Committed: Thu Jul 19 21:02:02 2007 UTC (16 years, 9 months ago) by root
Branch: MAIN
Changes since 1.4: +1 -0 lines
Log Message:
nuke unused sc_newbie_scorn.png/jpg, replace some pngs with uglier, much smaller, jpegs

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/pod/*.jpg \
16 resources/arch/*.png \
17 pod/*.pod
18 do
19 echo "$file"
20 done
21 ) | uniq >MANIFEST~ && mv MANIFEST~ MANIFEST
22
23