Files
core/Common/3dParty/curl/fetch.bat
Alexey.Golubev 0cabb63336 debug
2017-07-04 13:54:52 +03:00

7 lines
189 B
Batchfile

CD /D %~dp0
SET CURL_FOLDER=curl
IF NOT EXIST %CURL_FOLDER% CALL git clone https://github.com/curl/curl.git %CURL_FOLDER%
CD %CURL_FOLDER%
CALL git fetch
CALL git checkout curl-7_54_1
CD ..