[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

@@ -112,6 +112,7 @@ $toolsList = @(
(Get-NewmanVersion), (Get-NewmanVersion),
(Get-NvmVersion), (Get-NvmVersion),
(Get-PackerVersion), (Get-PackerVersion),
(Get-PassVersion),
(Get-PhantomJSVersion), (Get-PhantomJSVersion),
(Get-PulumiVersion), (Get-PulumiVersion),
(Get-RVersion), (Get-RVersion),

View File

@@ -175,6 +175,11 @@ function Get-PackerVersion {
return "Packer $(packer --version)" 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 { function Get-PhantomJSVersion {
return "PhantomJS $(phantomjs --version)" return "PhantomJS $(phantomjs --version)"
} }

View File

@@ -168,6 +168,7 @@
"mediainfo", "mediainfo",
"netcat", "netcat",
"parallel", "parallel",
"pass",
"patchelf", "patchelf",
"rsync", "rsync",
"shellcheck", "shellcheck",

View File

@@ -163,6 +163,7 @@
"mediainfo", "mediainfo",
"netcat", "netcat",
"parallel", "parallel",
"pass",
"patchelf", "patchelf",
"rsync", "rsync",
"shellcheck", "shellcheck",

View File

@@ -137,6 +137,7 @@
"mediainfo", "mediainfo",
"netcat", "netcat",
"parallel", "parallel",
"pass",
"patchelf", "patchelf",
"rsync", "rsync",
"shellcheck", "shellcheck",