[Ubuntu] Add pass package (#2304)

Co-authored-by: CrazyMax <crazy-max@users.noreply.github.com>
This commit is contained in:
CrazyMax
2020-12-21 20:00:51 +01:00
committed by GitHub
parent 1ff7e6a0c8
commit 7e4e97b9d9
5 changed files with 9 additions and 0 deletions

View File

@@ -175,6 +175,11 @@ function Get-PackerVersion {
return "Packer $(packer --version)"
}
function Get-PassVersion {
$passVersion = (pass version | Select-String "^=\s+v").Line.Replace('v','') | Take-OutputPart -Part 1
return "pass $passVersion"
}
function Get-PhantomJSVersion {
return "PhantomJS $(phantomjs --version)"
}