mirror of
https://github.com/microsoft/onefuzz.git
synced 2025-06-10 17:21:34 +00:00
hardcode wget to use TLSv1.2 (#717)
This commit is contained in:
parent
92b5139a0a
commit
d6b2ff9bae
@ -7,10 +7,12 @@ set -ex
|
||||
|
||||
mkdir -p artifacts/azcopy
|
||||
|
||||
wget --retry-connrefused -t 30 --waitretry=5 -O azcopy.zip https://aka.ms/downloadazcopy-v10-windows
|
||||
# NOTE: hard-coded to TLSv1.2 per aka.ms team to work around download failures
|
||||
wget --secure-protocol=TLSv1_2 --retry-connrefused -t 30 --waitretry=5 -O azcopy.zip https://aka.ms/downloadazcopy-v10-windows
|
||||
unzip azcopy.zip
|
||||
mv azcopy_windows*/* artifacts/azcopy/
|
||||
|
||||
wget --retry-connrefused -t 30 --waitretry=5 -O azcopy.tgz https://aka.ms/downloadazcopy-v10-linux
|
||||
# NOTE: hard-coded to TLSv1.2 per aka.ms team to work around download failures
|
||||
wget --secure-protocol=TLSv1_2 --retry-connrefused -t 30 --waitretry=5 -O azcopy.tgz https://aka.ms/downloadazcopy-v10-linux
|
||||
tar zxvf azcopy.tgz
|
||||
mv azcopy_linux_amd64*/* artifacts/azcopy/
|
||||
|
Loading…
x
Reference in New Issue
Block a user