| Revision: | 1.5 |
| Committed: | Thu Jul 19 21:02:02 2007 UTC (19 years, 2 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 |
| # | 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.5 | resources/pod/*.jpg \ |
| 16 | root | 1.4 | resources/arch/*.png \ |
| 17 | root | 1.2 | pod/*.pod |
| 18 | root | 1.1 | do |
| 19 | echo "$file" | ||
| 20 | done | ||
| 21 | root | 1.3 | ) | uniq >MANIFEST~ && mv MANIFEST~ MANIFEST |
| 22 | root | 1.1 | |
| 23 |