From a9774ae55a3ee4a034e822f930b80c3cf860ab18 Mon Sep 17 00:00:00 2001 From: Walusimbi Silver <107974377+swalusimbi@users.noreply.github.com> Date: Thu, 3 Sep 2026 14:31:17 +0300 Subject: [PATCH] Normalize line endings to LF The script had been saved with CRLF terminators, which makes the kernel look for an interpreter named 'bash\r' and fails the script with 'bad interpreter: No such file or directory' when run on the server. Pin LF via .gitattributes so editors on the Windows side of /mnt/d cannot reintroduce it. --- .gitattributes | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..f7e2def --- /dev/null +++ b/.gitattributes @@ -0,0 +1,2 @@ +* text=auto eol=lf +*.sh text eol=lf