Fixed Windows build issue

This commit is contained in:
mathusummut
2018-03-14 16:16:17 +01:00
parent 105d5fbb80
commit f65f898980
2 changed files with 9 additions and 2 deletions

View File

@@ -39,6 +39,10 @@ IF EXIST .\vs2017-64 (
cd ..\ cd ..\
) )
ROBOCOPY . . /S /MOVE
ROBOCOPY . . /S /MOVE
ROBOCOPY . . /S /MOVE
GOTO END GOTO END
:DELETE :DELETE

View File

@@ -4,8 +4,11 @@ echo This will delete /dependencies/openssl and /dependencies/src.
SET /P AREYOUSURE=Are you sure you want to do this? (y/[n]) SET /P AREYOUSURE=Are you sure you want to do this? (y/[n])
IF /I "%AREYOUSURE%" NEQ "y" GOTO END IF /I "%AREYOUSURE%" NEQ "y" GOTO END
IF /I "%AREYOUSURE%" NEQ "Y" GOTO END IF /I "%AREYOUSURE%" NEQ "Y" GOTO END
del /f /s /q .\dependencies\openssl del /f /s /q /AH .\dependencies\openssl
del /f /s /q .\dependencies\src del /f /s /q /AH .\dependencies\src
ROBOCOPY . . /S /MOVE
ROBOCOPY . . /S /MOVE
ROBOCOPY . . /S /MOVE
:END :END
endlocal endlocal