Skip to content

Commit 92b4529

Browse files
authored
Merge pull request #1192 from andyzhangx/sanity-azcopy-version
test: always use latest azcopy version in sanity test
2 parents ec7f382 + 56dc823 commit 92b4529

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

test/sanity/run-test.sh

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,12 @@ fi
3434

3535
azcopyPath="/usr/local/bin/azcopy"
3636
if [ ! -f "$azcopyPath" ]; then
37-
azcopyVersion=azcopy_linux_amd64_10.18.1
3837
echo 'Downloading azcopy...'
39-
wget -c https://azcopyvnext.azureedge.net/release20230420/$azcopyVersion.tar.gz
40-
tar -zxvf $azcopyVersion.tar.gz
41-
mv ./$azcopyVersion/azcopy /usr/local/bin/azcopy
42-
rm -rf ./$azcopyVersion*
38+
azcopyTarFile="azcopy.tar.gz"
39+
wget -O $azcopyTarFile https://aka.ms/downloadazcopy-v10-linux
40+
tar -zxvf $azcopyTarFile
41+
mv ./azcopy*/azcopy /usr/local/bin/azcopy
42+
rm -rf ./$azcopyTarFile
4343
chmod +x /usr/local/bin/azcopy
4444
fi
4545

0 commit comments

Comments
 (0)