diff --git a/PwshSpectreConsole.Docs/src/powershell/Helpers.psm1 b/PwshSpectreConsole.Docs/src/powershell/Helpers.psm1 index 7828f905..d07b28da 100644 --- a/PwshSpectreConsole.Docs/src/powershell/Helpers.psm1 +++ b/PwshSpectreConsole.Docs/src/powershell/Helpers.psm1 @@ -202,6 +202,7 @@ function Get-GitCommitDatesForHashFile { $group = Get-Group -Name $Name $hashfileName = "_" + ($doc.Name -replace '.md$', '.sha256') $gitHashfileName = Join-Path $group.Name $hashfileName + Write-Host "Getting git log for $gitHashfileName in cwd $OutputPath" $dates = git log --follow --pretty="format:%ci" -- $gitHashfileName return $dates | Sort-Object -Descending } finally {