mirror of
https://github.com/actions/runner-images-sangeeth.git
synced 2025-12-27 20:12:46 +08:00
[All OS] Output full version of git to software report (#5097)
This commit is contained in:
@@ -161,3 +161,15 @@ function Test-BlankElement {
|
||||
exit 1
|
||||
}
|
||||
}
|
||||
|
||||
function Take-Part {
|
||||
param (
|
||||
[Parameter(ValueFromPipeline)]
|
||||
[string] $toolOutput,
|
||||
[string] $Delimiter = " ",
|
||||
[int[]] $Part
|
||||
)
|
||||
$parts = $toolOutput.Split($Delimiter, [System.StringSplitOptions]::RemoveEmptyEntries)
|
||||
$selectedParts = $parts[$Part]
|
||||
return [string]::Join($Delimiter, $selectedParts)
|
||||
}
|
||||
@@ -67,8 +67,7 @@ function Get-DockerWincredVersion {
|
||||
}
|
||||
|
||||
function Get-GitVersion {
|
||||
$(git version) -match "git version (?<version>\d+\.\d+\.\d+)" | Out-Null
|
||||
$gitVersion = $Matches.Version
|
||||
$gitVersion = git --version | Take-Part -Part -1
|
||||
return "Git $gitVersion"
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user