[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

@@ -13,14 +13,9 @@ function Get-AptFastVersion {
return "apt-fast $aptFastVersion"
}
function Get-AzCopy7Version {
$azcopy7Version = azcopy --version | Take-OutputPart -Part 1 | Take-OutputPart -Part 0 -Delimiter "-"
return "AzCopy7 $azcopy7Version (available by ``azcopy`` alias)"
}
function Get-AzCopy10Version {
$azcopy10Version = azcopy10 --version | Take-OutputPart -Part 2
return "AzCopy10 $azcopy10Version (available by ``azcopy10`` alias)"
function Get-AzCopyVersion {
$azcopyVersion = azcopy --version | Take-OutputPart -Part 2
return "AzCopy $azcopyVersion (available by ``azcopy`` and ``azcopy10`` aliases)"
}
function Get-BazelVersion {