|
1 | 1 | @echo on
|
2 | 2 |
|
3 |
| -if "%APPVEYOR%" equ "True" rmdir /s /q C:\cygwin >NUL 2>NUL |
4 |
| -if %errorlevel% neq 0 exit /b 3 |
5 |
| -if "%APPVEYOR%" equ "True" rmdir /s /q C:\cygwin64 >NUL 2>NUL |
6 |
| -if %errorlevel% neq 0 exit /b 3 |
7 |
| -if "%APPVEYOR%" equ "True" rmdir /s /q C:\mingw >NUL 2>NUL |
8 |
| -if %errorlevel% neq 0 exit /b 3 |
9 |
| -if "%APPVEYOR%" equ "True" rmdir /s /q C:\mingw-w64 >NUL 2>NUL |
10 |
| -if %errorlevel% neq 0 exit /b 3 |
11 |
| -if "%APPVEYOR%" equ "True" rmdir /s /q C:\msys64 >NUL 2>NUL |
12 |
| -if %errorlevel% neq 0 exit /b 3 |
13 |
| -if "%APPVEYOR%" equ "True" rmdir /s /q c:\OpenSSL-Win32 >NUL 2>NUL |
14 |
| -if %errorlevel% neq 0 exit /b 3 |
15 |
| -if "%APPVEYOR%" equ "True" rmdir /s /q c:\OpenSSL-Win64 >NUL 2>NUL |
16 |
| -if %errorlevel% neq 0 exit /b 3 |
17 |
| -if "%APPVEYOR%" equ "True" rmdir /s /q c:\OpenSSL-v11-Win32 >NUL 2>NUL |
18 |
| -if %errorlevel% neq 0 exit /b 3 |
19 |
| -if "%APPVEYOR%" equ "True" rmdir /s /q c:\OpenSSL-v11-Win64 >NUL 2>NUL |
20 |
| -if %errorlevel% neq 0 exit /b 3 |
21 |
| -if "%APPVEYOR%" equ "True" del /f /q C:\Windows\System32\libcrypto-1_1-x64.dll >NUL 2>NUL |
22 |
| -if %errorlevel% neq 0 exit /b 3 |
23 |
| -if "%APPVEYOR%" equ "True" del /f /q C:\Windows\System32\libssl-1_1-x64.dll >NUL 2>NUL |
24 |
| -if %errorlevel% neq 0 exit /b 3 |
| 3 | +if "%APPVEYOR%" equ "True" ( |
| 4 | + rmdir /s /q C:\cygwin >NUL 2>NUL |
| 5 | + if %errorlevel% neq 0 exit /b 3 |
| 6 | + rmdir /s /q C:\cygwin64 >NUL 2>NUL |
| 7 | + if %errorlevel% neq 0 exit /b 3 |
| 8 | + rmdir /s /q C:\mingw >NUL 2>NUL |
| 9 | + if %errorlevel% neq 0 exit /b 3 |
| 10 | + rmdir /s /q C:\mingw-w64 >NUL 2>NUL |
| 11 | + if %errorlevel% neq 0 exit /b 3 |
| 12 | + rmdir /s /q C:\msys64 >NUL 2>NUL |
| 13 | + if %errorlevel% neq 0 exit /b 3 |
| 14 | + rmdir /s /q c:\OpenSSL-Win32 >NUL 2>NUL |
| 15 | + if %errorlevel% neq 0 exit /b 3 |
| 16 | + rmdir /s /q c:\OpenSSL-Win64 >NUL 2>NUL |
| 17 | + if %errorlevel% neq 0 exit /b 3 |
| 18 | + rmdir /s /q c:\OpenSSL-v11-Win32 >NUL 2>NUL |
| 19 | + if %errorlevel% neq 0 exit /b 3 |
| 20 | + rmdir /s /q c:\OpenSSL-v11-Win64 >NUL 2>NUL |
| 21 | + if %errorlevel% neq 0 exit /b 3 |
| 22 | + del /f /q C:\Windows\System32\libcrypto-1_1-x64.dll >NUL 2>NUL |
| 23 | + if %errorlevel% neq 0 exit /b 3 |
| 24 | + del /f /q C:\Windows\System32\libssl-1_1-x64.dll >NUL 2>NUL |
| 25 | + if %errorlevel% neq 0 exit /b 3 |
| 26 | +) |
25 | 27 |
|
26 | 28 | cd /D %APPVEYOR_BUILD_FOLDER%
|
27 | 29 | if %errorlevel% neq 0 exit /b 3
|
|
0 commit comments