-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild-pack.bat
25 lines (22 loc) · 923 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
25
@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_oacmp1_beta.pk3 levelshots\*.*
..\zip.exe -9r ..\z_oacmp1_beta.pk3 maps\*.aas
..\zip.exe -9r ..\z_oacmp1_beta.pk3 maps\*.bsp
..\zip.exe -9r ..\z_oacmp1_beta.pk3 models\*.*
..\zip.exe -9r ..\z_oacmp1_beta.pk3 music\*.*
..\zip.exe -9r ..\z_oacmp1_beta.pk3 scripts\*.arena
..\zip.exe -9r ..\z_oacmp1_beta.pk3 scripts\*.shader
..\zip.exe -9r ..\z_oacmp1_beta.pk3 sound\*.*
..\zip.exe -9r ..\z_oacmp1_beta.pk3 textures\*.*
..\zip.exe -9r ..\z_oacmp1_beta.pk3 *.cfg
..\zip.exe -9r ..\z_oacmp1_beta.pk3 docs\COPYING
echo Done
@echo on