[ubuntu] Remove unused code (#13612)

This commit is contained in:
Sergei Radich
2026-02-05 13:30:58 +01:00
committed by GitHub
parent 599e47c037
commit 6309f04c36
3 changed files with 0 additions and 39 deletions
@@ -58,8 +58,6 @@ function Get-CMakeVersion {
return $cmakeVersion
}
function Get-DockerComposeV2Version {
$composeVersion = docker compose version | Get-StringPart -Part 3 | Get-StringPart -Part 0 -Delimiter "v"
return $composeVersion
@@ -115,11 +113,6 @@ function Get-HerokuVersion {
return $herokuVersion
}
function Get-HHVMVersion {
$hhvmVersion = hhvm --version | Select-Object -First 1 | Get-StringPart -Part 2
return $hhvmVersion
}
function Get-SVNVersion {
$svnVersion = svn --version | Select-Object -First 1 | Get-StringPart -Part 2
return $svnVersion
@@ -178,11 +171,6 @@ function Get-PackerVersion {
return $packerVersion
}
function Get-PhantomJSVersion {
$env:OPENSSL_CONF="/etc/ssl"; phantomjs --version
return $(phantomjs --version)
}
function Get-TerraformVersion {
return (terraform version | Select-String "^Terraform").Line.Replace('v','') | Get-StringPart -Part 1
}