fix: add .gitattributes to enforce LF line endings for shell scripts#8
fix: add .gitattributes to enforce LF line endings for shell scripts#8curlysasha wants to merge 1 commit intomasterfrom
Conversation
This fixes issue #7 where entrypoint.sh was not found on Windows due to CRLF line endings causing the shebang to fail. The .gitattributes file ensures: - All .sh files use LF line endings on all platforms - Docker containers work correctly on Windows, macOS, and Linux Co-authored-by: curlysasha <curlysasha@users.noreply.github.com>
Code Review - PR #8: Fix
|
Summary
This PR fixes issue #7 where
entrypoint.shwas not found on Windows 11 due to CRLF line endings.Changes
.gitattributesfile to enforce LF line endings for all shell scriptsTesting
After merging, Windows users should:
docker-compose build --no-cachedocker-compose up -dCloses #7
Generated with Claude Code