fix: enforce LF line endings to unbreak hooks on macOS/Linux (#12) - #13
Merged
Conversation
Hook scripts were being delivered with CRLF line terminators, which breaks every script on macOS/Linux — the PreToolUse Bash guard fails with ": command not found" and "unexpected end of file", blocking all Bash tool calls while the plugin is installed. The committed blobs are actually LF, but this repo has core.autocrlf=true, so on a Windows checkout the working tree is smudged to CRLF — and that working tree is what ships. Adding .gitattributes with `eol=lf` forces LF on checkout across every OS regardless of autocrlf, so the working tree (and anything packaged from it) stays LF and can't regress. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Fixes #12. Hook scripts in
hooks/were committed with CRLF line endings, which breaks every hook on macOS/Linux — including thePreToolUseBash guard, blocking all Bash tool calls while the plugin is installed.Changes
.gitattributesenforcingeol=lffor all text files and*.shspecifically, while keeping CRLF for Windows-only scripts (*.bat,*.cmd,*.ps1) and marking binaries.Verification
All hook scripts now pass
bash -n, and no tracked file remains CRLF in the index.🤖 Generated with Claude Code