blob: 38411bd994b1c7f0f526a6123958f7f554af966e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
if NOT EXIST "plugins" (
mkdir "plugins"
)
xcopy "CmdLine\win32\Release\*.dll" "plugins\*"
for /F "tokens=4-8* delims=. " %%i in (docs\CmdLine_readme.txt) do (call :Pack %%i %%j %%k %%l; exit)
:Pack
d:\usr\PowerArchiver\pacl\pacomp.exe -a -c2 "CmdLine %1.%2.%3.%4 x32.zip" @files_release.txt
d:\usr\PowerArchiver\pacl\pacomp.exe -p -a -c2 "CmdLine %1.%2.%3.%4 x32.zip" docs\*.* *.caca
d:\usr\PowerArchiver\pacl\pacomp.exe -p -a -c2 "CmdLine %1.%2.%3.%4 x32.zip" plugins\*.* *.caca
rmdir "plugins\" /Q /S
call "pack symbols.bat" CmdLine executable\MimCmd %1.%2.%3.%4
exit
error:
echo "Error packing CmdLine"
|