We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3cc81d0 commit b567107Copy full SHA for b567107
pkg/hooks/uninstall.go
@@ -5,6 +5,7 @@ import (
5
"os"
6
"os/exec"
7
"path/filepath"
8
+ "strings"
9
)
10
11
// Uninstall removes pre-commit hooks, either locally or globally.
@@ -44,7 +45,7 @@ func uninstallGlobal() error {
44
45
return fmt.Errorf("failed to get global hooks path: %v", err)
46
}
47
- globalHooksPath := filepath.Clean(string(output))
48
+ globalHooksPath := filepath.Clean(strings.TrimSpace(string(output)))
49
50
// If core.hooksPath is not set, default to ~/.git/hooks
51
if globalHooksPath == "" {
0 commit comments