15 lines
368 B
Bash
Executable File
15 lines
368 B
Bash
Executable File
#!/bin/sh
|
|
|
|
export ZIPNAME=nubdist/iceballfornoobs-003.zip
|
|
|
|
zip -r $ZIPNAME *.dll *.exe *.txt *.bat docs/ \
|
|
pkg/base/*.lua \
|
|
pkg/base/icegui/*.lua \
|
|
pkg/maps/mesa.vxl \
|
|
pkg/base/gfx/ pkg/base/pmf/ \
|
|
pkg/iceball/snowtest/ \
|
|
pkg/iceball/pmfedit/ \
|
|
pkg/iceball/mapedit/ \
|
|
dlcache/info.txt clsave/info.txt svsave/info.txt \
|
|
clsave/config.json clsave/pub/user.json
|