| Revision: | 1.6 |
| Committed: | Sun Jul 29 21:31:47 2007 UTC (19 years, 1 month ago) by root |
| Branch: | MAIN |
| CVS Tags: | rel-0_9965, rel-0_9964, rel-0_9963, rel-0_99, rel-0_9968, rel-0_9958, rel-0_9960, rel-0_9956, rel-0_9972, rel-0_9973, rel-0_9974, rel-0_9975, rel-0_9957, rel-0_9955, rel-0_9971, rel-0_9967, rel-1_21, rel-0_9959, rel-0_9966, rel-0_995 |
| Changes since 1.5: | +0 -3 lines |
| Log Message: | finally, primitive server-supplied sound effects |
| # | 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/music/*.ogg \ | ||
| 10 | resources/ui/resist/*.png \ | ||
| 11 | root | 1.2 | resources/pod/*.png \ |
| 12 | root | 1.5 | resources/pod/*.jpg \ |
| 13 | root | 1.4 | resources/arch/*.png \ |
| 14 | root | 1.2 | pod/*.pod |
| 15 | root | 1.1 | do |
| 16 | echo "$file" | ||
| 17 | done | ||
| 18 | root | 1.3 | ) | uniq >MANIFEST~ && mv MANIFEST~ MANIFEST |
| 19 | root | 1.1 | |
| 20 |