From 637041598fd469b973c9d2c3bde62e008f1ace9a Mon Sep 17 00:00:00 2001 From: Patrick Lewis Date: Sun, 30 May 2021 13:43:31 -0700 Subject: fix(BASH/Compiler): error in if condition (#5983) --- apps/compiler/includes/functions.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'apps/compiler/includes/functions.sh') diff --git a/apps/compiler/includes/functions.sh b/apps/compiler/includes/functions.sh index dcbcc8db26..f3c98e5cff 100644 --- a/apps/compiler/includes/functions.sh +++ b/apps/compiler/includes/functions.sh @@ -95,7 +95,7 @@ function comp_compile() { cd $CWD - if [ $DOCKER = 1 ]; then + if [[ $DOCKER = 1 ]]; then echo "Generating confs..." cp -n "env/dist/etc/worldserver.conf.dockerdist" "env/dist/etc/worldserver.conf" cp -n "env/dist/etc/authserver.conf.dockerdist" "env/dist/etc/authserver.conf" -- cgit v1.2.3