mirror of
https://github.com/maziggy/bambuddy.git
synced 2026-05-13 00:52:59 -04:00
The start_bambuddy.bat launcher had Unix (LF) line endings. When a user's git is configured with core.autocrlf=false or input, the file is checked out with LF endings and cmd.exe fails with "the syntax of the command is incorrect" before reaching the hash check. Add .gitattributes forcing CRLF for *.bat files so they always get correct line endings on checkout regardless of git config.
4 lines
146 B
Plaintext
4 lines
146 B
Plaintext
# Force CRLF line endings for Windows batch files so cmd.exe can parse them
|
|
# regardless of the user's core.autocrlf setting.
|
|
*.bat text eol=crlf
|