-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpack.bat
More file actions
20 lines (17 loc) · 729 Bytes
/
pack.bat
File metadata and controls
20 lines (17 loc) · 729 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
@ECHO off
IF "%1"=="" GOTO param_error
REM --------------------------------------------------------
REM Zip sources using 7zip
REM --------------------------------------------------------
7z.exe a -tzip -mx=9 -mm=Deflate -mfb=255 "in_bridge_%1.zip" "Binary" "Build" "Source" "cleanup.bat" "LGPL.txt" "pack.bat" "readme.txt" -r -x!Release_Temp\* -x!Build\*.layout -x!Build\*.depend -x!Build\.objs -x!Build\.objs\*
GOTO exit
REM --------------------------------------------------------
REM Usage info
REM --------------------------------------------------------
: param_error
ECHO USAGE: pack XXX
ECHO.
ECHO XXX is the release id string e.g. "20".
ECHO Filename will be "in_bridge_XXX.zip".
ECHO.
: exit