mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-04-07 13:55:33 +08:00
9 lines
172 B
Bash
Executable File
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 ..
|