diff options
author | Jacob Hoffman-Andrews <github@hoffman-andrews.com> | 2021-06-24 19:43:19 -0700 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2021-06-27 00:00:29 +0200 |
commit | 6d972c8b1cbb39d5c95b70f542d940e6e68b244d (patch) | |
tree | 08c06745fa7ce9cd0df649edd5bbbb83cc12688d /scripts | |
parent | f090c94b50daaf99561032d4dca59895a7de8d43 (diff) | |
download | curl-6d972c8b1cbb39d5c95b70f542d940e6e68b244d.tar.gz |
curstls: bump crustls version and use new URL
crustls moved to https://github.com/rustls/rustls-ffi. This also bumps
the expected version to 0.7.0.
Closes #7297
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/travis/before_script.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/travis/before_script.sh b/scripts/travis/before_script.sh index 257420e81..b7a321bcb 100755 --- a/scripts/travis/before_script.sh +++ b/scripts/travis/before_script.sh @@ -119,7 +119,7 @@ fi if [ "$TRAVIS_OS_NAME" = linux -a "$RUSTLS_VERSION" ]; then cd $HOME - git clone --depth=1 --recursive https://github.com/abetterinternet/crustls.git -b "$RUSTLS_VERSION" + git clone --depth=1 --recursive https://github.com/rustls/rustls-ffi.git -b "$RUSTLS_VERSION" curl https://sh.rustup.rs -sSf | sh -s -- -y source $HOME/.cargo/env cargo install cbindgen |