From 9d73dcf1d73ecfc043a5a06e47c3f2bf30c29438 Mon Sep 17 00:00:00 2001 From: Constantin Simonis Date: Mon, 16 Jun 2025 11:08:03 +0200 Subject: [PATCH] chore: add git config for line endings handling --- install | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/install b/install index 3962653..8906486 100755 --- a/install +++ b/install @@ -2,7 +2,8 @@ set -e -# Use sudo only if not root +git config core.autocrlf false + APT_CMD="apt" if [ "$(id -u)" -ne 0 ]; then APT_CMD="sudo apt"