mirror of
https://github.com/GerbilSoft/rvthtool.git
synced 2025-06-18 03:25:33 -04:00
10 lines
254 B
Batchfile
10 lines
254 B
Batchfile
@ECHO OFF
|
|
if not "%compiler%" == "msvc2013" exit /b 0
|
|
if not "%configuration%" == "Release" exit /b 0
|
|
|
|
cpack --version
|
|
cpack -C "%configuration%"
|
|
if ERRORLEVEL 1 exit /b %ERRORLEVEL%
|
|
for %%z in (*.zip) do appveyor PushArtifact "%%z"
|
|
exit /b %ERRORLEVEL%
|