-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild-pack.bat
24 lines (21 loc) · 883 Bytes
/
build-pack.bat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
@echo off
rem -----------------------------------------------------
rem This script assumes that you have zip installed
rem and it is in your path. If zip is not installed
rem this script will not work. Please check your distro's
rem documentation on how to install the zip package.
rem -----------------------------------------------------
echo Compressing...
cd baseoa
..\zip.exe -9r ..\z_oacmp2_beta.pk3 levelshots\*.jpg
..\zip.exe -9r ..\z_oacmp2_beta.pk3 levelshots\*.tga
..\zip.exe -9r ..\z_oacmp2_beta.pk3 maps\*.aas
..\zip.exe -9r ..\z_oacmp2_beta.pk3 maps\*.bsp
..\zip.exe -9r ..\z_oacmp2_beta.pk3 models\*.*
..\zip.exe -9r ..\z_oacmp2_beta.pk3 scripts\*.arena
..\zip.exe -9r ..\z_oacmp2_beta.pk3 scripts\*.shader
..\zip.exe -9r ..\z_oacmp2_beta.pk3 sound\*.*
..\zip.exe -9r ..\z_oacmp2_beta.pk3 textures\*.*
..\zip.exe -9r ..\z_oacmp2_beta.pk3 *.cfg
echo Done
@echo on