diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2021-03-01 13:33:02 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-01 13:33:02 +0100 |
commit | 2d856c84653dcc7cbf7e087f7f877acaac85c484 (patch) | |
tree | b878b17289c0bbbcb043b33b2e52096f9c2d367d | |
parent | d005ce57779fb164b4d84f25734d21f0bb7ebcce (diff) | |
parent | 3a75e14844ab94a3c9aa08d7db4657610c352de1 (diff) | |
download | nextcloud-server-2d856c84653dcc7cbf7e087f7f877acaac85c484.tar.gz nextcloud-server-2d856c84653dcc7cbf7e087f7f877acaac85c484.zip |
Merge pull request #25715 from nextcloud/fix/ca-checker
Bump the ca location
-rwxr-xr-x | build/ca-bundle-checker.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/ca-bundle-checker.sh b/build/ca-bundle-checker.sh index 6af762e2e37..50d7b7916fa 100755 --- a/build/ca-bundle-checker.sh +++ b/build/ca-bundle-checker.sh @@ -6,7 +6,7 @@ if [[ -n ${DRONE_SOURCE_BRANCH} && ! ${DRONE_SOURCE_BRANCH} =~ version(\/noid)?\ fi echo "Fetching latest ca-bundle.crt ..." -curl -o resources/config/ca-bundle.crt https://curl.haxx.se/ca/cacert.pem +curl -o resources/config/ca-bundle.crt https://curl.se/ca/cacert.pem echo outdated=$(git diff --name-only | grep "resources/config/ca-bundle.crt") |