| Revision: | 1.2 |
| Committed: | Sun Aug 13 02:43:22 2006 UTC (20 years, 1 month ago) by root |
| Branch: | MAIN |
| Changes since 1.1: | +2 -2 lines |
| Log Message: | *** empty log message *** |
| # | User | Rev | Content |
|---|---|---|---|
| 1 | root | 1.1 | #!/bin/sh |
| 2 | |||
| 3 | ( | ||
| 4 | grep -v ^resources/ MANIFEST | ||
| 5 | for file in \ | ||
| 6 | resources/*.png \ | ||
| 7 | resources/fonts/*.ttf \ | ||
| 8 | resources/sounds/*.wav \ | ||
| 9 | resources/sounds/*.ogg \ | ||
| 10 | resources/sounds/config \ | ||
| 11 | resources/music/*.ogg \ | ||
| 12 | resources/ui/resist/*.png \ | ||
| 13 | root | 1.2 | resources/pod/*.png \ |
| 14 | pod/*.pod | ||
| 15 | root | 1.1 | do |
| 16 | echo "$file" | ||
| 17 | done | ||
| 18 | ) >MANIFEST~ && mv MANIFEST~ MANIFEST | ||
| 19 | |||
| 20 |