From 1a944d9a1e22a7edee3777e8e2d7064f640a2153 Mon Sep 17 00:00:00 2001 From: "J. Yi" <93548144+jyyi1@users.noreply.github.com> Date: Mon, 22 Apr 2024 15:55:57 -0700 Subject: [PATCH] fix(client/electron/windows): force crlf line endings for installation scripts (#1992) --- .gitattributes | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.gitattributes b/.gitattributes index 6584c79e43..67f4365979 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,4 +1,14 @@ * text=auto eol=lf + +# Windows Batch Script *.bat eol=crlf + +# NSIS Installation Script +*.nsh eol=crlf + +# Tap Driver Installation Script +third_party/tap-windows6/bin/*.inf eol=crlf +third_party/tap-windows6/bin/*.h eol=crlf + # Allow the build folders to be searched by GitHub's T file search build/** linguist-generated=false