[Ubuntu] Remove azcopy 7 (#2779)

* remove azcopy 7 installation

* Fix software report generator

* fix variable name

* add install helper
This commit is contained in:
Mikhail Timofeev
2021-02-24 18:21:51 +03:00
committed by GitHub
parent 5bf71738f0
commit 5afe6fcc4e
4 changed files with 12 additions and 22 deletions

View File

@@ -1,11 +1,9 @@
Describe "azcopy" {
It "azcopy" {
#(azcopy --version) command returns exit code 1 (see details: https://github.com/Azure/azure-storage-azcopy/releases)
$azcopyVersion = (Get-CommandResult "azcopy --version").Output
$azcopyVersion | Should -BeLike "*azcopy*"
"azcopy --version" | Should -ReturnZeroExitCode
}
It "azcopy10" {
It "azcopy10 link exists" {
"azcopy10 --version" | Should -ReturnZeroExitCode
}
}