[Windows] Remove hub utility (#8365)

This commit is contained in:
Vasilii Polikarpov
2023-09-26 09:30:27 +02:00
committed by GitHub
parent f05152105f
commit 9f764f7429
4 changed files with 0 additions and 18 deletions

View File

@@ -232,12 +232,6 @@ function Get-CloudFoundryVersion {
return $cfVersion
}
function Get-HubVersion {
($(hub version) | Select-String -Pattern "hub version") -match "hub version (?<version>\d+\.\d+\.\d+)" | Out-Null
$hubVersion = $Matches.Version
return $hubVersion
}
function Get-7zipVersion {
(7z | Out-String) -match "7-Zip (?<version>\d+\.\d+\.?\d*)" | Out-Null
$version = $Matches.Version