From 65f713b80b21aa0600a20a822baaa97f298a5785 Mon Sep 17 00:00:00 2001 From: Shadowbroker <43977454+BigBodyCobain@users.noreply.github.com> Date: Fri, 3 Apr 2026 19:48:22 -0600 Subject: [PATCH] fix: normalize CRLF to LF in all shell scripts, add .gitattributes All .sh files had Windows-style CRLF line endings causing 'bad interpreter' errors on macOS/Linux. Stripped to LF and added .gitattributes to enforce LF for .sh files going forward. Closes #126 --- .gitattributes | 2 ++ compose.sh | 0 2 files changed, 2 insertions(+) create mode 100644 .gitattributes mode change 100755 => 100644 compose.sh diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..db59ba9 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,2 @@ +# Force LF line endings for shell scripts +*.sh text eol=lf diff --git a/compose.sh b/compose.sh old mode 100755 new mode 100644