From a46c426598c89b38aaeab38b6e15a27eaf27ca12 Mon Sep 17 00:00:00 2001 From: Edward Thomson Date: Mon, 18 Dec 2023 12:56:24 +0000 Subject: [PATCH] gitattributes: .sh files are always Unixy Always checkout out shell scripts with Unix-style line endings. mingw doesn't mind, but cygwin struggles without CRLF. --- .gitattributes | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitattributes b/.gitattributes index 3d90b7d61f8..3788dc98358 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,2 +1,4 @@ * text=auto +ci/**/*.sh text eol=lf +script/**/*.sh text eol=lf tests/resources/** linguist-vendored