From eed2d315303a47812829127a39941353ada7ac25 Mon Sep 17 00:00:00 2001 From: Timon Date: Mon, 1 Nov 2021 00:16:28 +0100 Subject: [PATCH] Remove carriage return from files originating from windows --- src/config | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config b/src/config index fc96694..4e81401 100644 --- a/src/config +++ b/src/config @@ -1,7 +1,7 @@ if [ -f ${DIST_PATH}/config.local ] then echo "Sourcing distro config.local..." - source ${DIST_PATH}/config.local + source <(tr -d '\r' < ${DIST_PATH}/config.local) fi ###############################################################################