diff options
author | Brad King <brad.king@kitware.com> | 2017-05-11 14:47:38 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2017-05-11 15:26:18 (GMT) |
commit | 5af9c8e2451afd8e63d6b05e69cd141af543a164 (patch) | |
tree | 22e4a7767136aed3310e6e11cba4411bde6bdfb0 /Utilities | |
parent | 8e2f3582eb9cf75c78fbe8232cdacce2357f7efc (diff) | |
download | CMake-5af9c8e2451afd8e63d6b05e69cd141af543a164.zip CMake-5af9c8e2451afd8e63d6b05e69cd141af543a164.tar.gz CMake-5af9c8e2451afd8e63d6b05e69cd141af543a164.tar.bz2 |
curl: Update script to get curl 7.54.0
Diffstat (limited to 'Utilities')
-rwxr-xr-x | Utilities/Scripts/update-curl.bash | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Utilities/Scripts/update-curl.bash b/Utilities/Scripts/update-curl.bash index 9cff7ca..d270d37 100755 --- a/Utilities/Scripts/update-curl.bash +++ b/Utilities/Scripts/update-curl.bash @@ -8,7 +8,7 @@ readonly name="curl" readonly ownership="Curl Upstream <curl-library@cool.haxx.se>" readonly subtree="Utilities/cmcurl" readonly repo="https://github.com/curl/curl.git" -readonly tag="curl-7_52_1" +readonly tag="curl-7_54_0" readonly shortlog=false readonly paths=" CMake/* @@ -32,6 +32,7 @@ extract_source () { git_archive pushd "${extractdir}/${name}-reduced" rm lib/config-*.h + echo "* -whitespace" > .gitattributes popd } |