176944f3bb
* modified mkpak.sh so that it can package all paks into one zip file
10 lines
188 B
Bash
Executable File
10 lines
188 B
Bash
Executable File
#!/bin/sh
|
|
|
|
rm -f Base.pak Sounds.pak Models.pak DevPaks.pak
|
|
|
|
zip -r Base.pak Gfx Textures
|
|
zip -r Models.pak Models
|
|
zip -r Sounds.pak Sounds
|
|
|
|
zip DevPaks.zip Base.pak Models.pak Sounds.pak
|