Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit b567107

Browse files
committedMar 25, 2025·
feat: trim spaces from the uninstall
1 parent 3cc81d0 commit b567107

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed
 

‎pkg/hooks/uninstall.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ import (
55
"os"
66
"os/exec"
77
"path/filepath"
8+
"strings"
89
)
910

1011
// Uninstall removes pre-commit hooks, either locally or globally.
@@ -44,7 +45,7 @@ func uninstallGlobal() error {
4445
return fmt.Errorf("failed to get global hooks path: %v", err)
4546
}
4647

47-
globalHooksPath := filepath.Clean(string(output))
48+
globalHooksPath := filepath.Clean(strings.TrimSpace(string(output)))
4849

4950
// If core.hooksPath is not set, default to ~/.git/hooks
5051
if globalHooksPath == "" {

0 commit comments

Comments
 (0)
Please sign in to comment.