From 926fc8e64a6d2721dcdb3ebc8ad514e1e49e55e3 Mon Sep 17 00:00:00 2001 From: Tonye Jack Date: Sat, 6 Nov 2021 12:45:30 -0400 Subject: [PATCH] Revert change to entrypoint.sh --- entrypoint.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/entrypoint.sh b/entrypoint.sh index 5296fdb..0b82936 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -2,7 +2,11 @@ set -e -git config --local core.autocrlf input +if [[ "$PLATFORM" == 'Windows' ]]; then + git config --local core.autocrlf true +else + git config --local core.autocrlf input +fi CHANGED_FILES=()