blob: d0e1e31294e88d2977c22723dafc3e3ee4f11075 (
plain)
1
2
3
4
5
6
7
8
9
|
if NOT EXIST "symbols\%1 - %3%4" (
mkdir "symbols\%1 - %3%4"
)
xcopy WhenWasIt\win32\%2\*.pdb "symbols\%1 - %3%4\win32\*" /EXCLUDE:symbols_exclude.txt /Y
xcopy WhenWasIt\x64\%2\*.pdb "symbols\%1 - %3%4\x64\*" /EXCLUDE:symbols_exclude.txt /Y
d:\usr\PowerArchiver\pacl\pacomp.exe -p -a -r -c2 "symbols - %1.zip" "symbols\*.*"
rmdir "symbols\" /Q /S
|