Skip to content

Commit

Permalink
Invoke-PsFzfGitHashes - Add missing backtick (#285)
Browse files Browse the repository at this point in the history
  • Loading branch information
pluma9 authored Nov 15, 2024
1 parent ec306f6 commit 6902094
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion PSFzf.Git.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ function Invoke-PsFzfGitHashes() {
$fzfArguments = Get-GitFzfArguments
& git log --date=short --format="%C(green)%C(bold)%cd %C(auto)%h%d %s (%an)" $(Get-ColorAlways).Trim() --graph | `
Invoke-Fzf @fzfArguments -NoSort `
-BorderLabel "$script:hashesString"
-BorderLabel "$script:hashesString" `
-Preview "$previewCmd" | ForEach-Object {
if ($_ -match '\d\d-\d\d-\d\d\s+([a-f0-9]+)\s+') {
$result += $Matches.1
Expand Down

0 comments on commit 6902094

Please sign in to comment.