Skip to content

Commit c696211

Browse files
authored
Merge pull request #7 from timonsku/patch-1
Remove carriage return from files originating from windows
2 parents 8067fda + eed2d31 commit c696211

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
if [ -f ${DIST_PATH}/config.local ]
22
then
33
echo "Sourcing distro config.local..."
4-
source ${DIST_PATH}/config.local
4+
source <(tr -d '\r' < ${DIST_PATH}/config.local)
55
fi
66

77
###############################################################################

0 commit comments

Comments
 (0)