[Ubuntu] Add Fastlane (#2751)

This commit is contained in:
Mikhail Timofeev
2021-02-19 18:33:28 +03:00
committed by GitHub
parent d76f3274f8
commit c4d66c8dc7
8 changed files with 56 additions and 8 deletions

View File

@@ -264,6 +264,11 @@ function Get-AWSSAMVersion {
return "AWS SAM CLI $(sam --version | Take-OutputPart -Part -1)"
}
function Get-FastlaneVersion {
$fastlaneVersion = fastlane --version | Select-String "^fastlane [0-9]" | Take-OutputPart -Part 1
return "Fastlane $fastlaneVersion"
}
function Get-HubCliVersion {
$hubVersion = hub --version | Select-String "hub version" | Take-OutputPart -Part 2
return "Hub CLI $hubVersion"