fix(DOCKER): add dos2unix conversion when generating config files (#4697)

This commit is contained in:
Patrick Lewis
2021-03-05 05:17:47 -08:00
committed by GitHub
parent e59041ddb1
commit db6018aa38

View File

@@ -5,3 +5,7 @@ cp src/server/authserver/authserver.conf.dist docker/authserver/etc/authserver.c
cp docker/worldserver/etc/worldserver.conf.dockerdist docker/worldserver/etc/worldserver.conf cp docker/worldserver/etc/worldserver.conf.dockerdist docker/worldserver/etc/worldserver.conf
cp docker/authserver/etc/authserver.conf.dockerdist docker/authserver/etc/authserver.conf cp docker/authserver/etc/authserver.conf.dockerdist docker/authserver/etc/authserver.conf
if [ $OSTYPE = msys ]; then
dos2unix docker/worldserver/etc/* docker/authserver/etc/*
fi