appveyor: debug unzip/copy lines

This commit is contained in:
Alam Ed Arias 2016-05-19 00:53:54 -04:00
parent d08418dcff
commit dbde012c8d
1 changed files with 5 additions and 5 deletions

View File

@ -25,12 +25,12 @@ cache:
install:
- if not exist "%NASM_ZIP%.zip" appveyor DownloadFile "%NASM_URL%" -FileName "%NASM_ZIP%.zip"
- 7z x -y "%NASM_ZIP%.zip" -o%TMP% >null
- robocopy /S /xx /ns /nc /nfl /ndl /np /njh /njs %TMP%\%NASM_ZIP% %MINGW_SDK% nasm.exe || exit 0
- 7z x -y "%NASM_ZIP%.zip" -o%TMP%
- robocopy /S /xx %TMP%\%NASM_ZIP% %MINGW_SDK% nasm.exe || exit 0
- if not exist "%UPX_ZIP%.zip" appveyor DownloadFile "%UPX_URL%" -FileName "%UPX_ZIP%.zip"
- 7z x -y "%UPX_ZIP%.zip" -o%TMP% >null
- robocopy /S /xx /ns /nc /nfl /ndl /np /njh /njs %TMP%\%UPX_ZIP% %MINGW_SDK% upx.exe || exit 0
- 7z x -y "%UPX_ZIP%.zip" -o%TMP%
- robocopy /S /xx %TMP%\%UPX_ZIP% %MINGW_SDK% upx.exe || exit 0
- if not exist "%CCACHE_EXE%" appveyor DownloadFile "%CCACHE_URL%" -FileName "%CCACHE_EXE%"
- ccache -M 99M
@ -44,8 +44,8 @@ before_build:
- set Path=%MINGW_SDK%\bin;%Path%
- i686-w64-mingw32-gcc --version
- mingw32-make --version
- upx -V
- nasm -v
- upx -V
- ccache -s
- set SRB2_MFLAGS=-C src MINGW=1 WARNINGMODE=1 GCC53=1 ECHO=1