Files
core/Common/3dParty/curl/fetch.bat
2017-07-03 14:46:56 +03:00

6 lines
177 B
Batchfile

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 ..