Files
core/Common/3dParty/curl/fetch.sh
Alexey Golubev 776d799fd2 Debug
2017-07-03 16:50:49 +03:00

9 lines
172 B
Bash
Executable File

CURL_FOLDER=curl
if [ ! -d ${CURL_FOLDER} ]; then
git clone https://github.com/curl/curl.git ${CURL_FOLDER}
fi
cd ${CURL_FOLDER}
git fetch
git checkout curl-7_54_1
cd ..