From b1a241233e856b630df1a52106ee6cdaa6b68e68 Mon Sep 17 00:00:00 2001 From: Rangi <35663410+Rangi42@users.noreply.github.com> Date: Sun, 25 Sep 2022 05:18:44 -0400 Subject: [PATCH] Preserve Unix line endings for .bash and .flags files (#1054) Fixes #955 --- .gitattributes | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.gitattributes b/.gitattributes index 75fc9b71..be856613 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,2 +1,6 @@ # Shell scripts need Unix line endings (see https://github.com/gbdev/rgbds/issues/841) *.sh text eol=lf +*.bash text eol=lf + +# Flags also need Unix line endings (see https://github.com/gbdev/rgbds/issues/955) +*.flags text eol=lf