diff options
author | Patrick Lewis <pat@lo5t.com> | 2021-05-30 13:43:31 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-30 22:43:31 +0200 |
commit | 637041598fd469b973c9d2c3bde62e008f1ace9a (patch) | |
tree | 0a18a6122ff632fd8eb3863d876f8fc153d7cd5d /apps/compiler/includes/functions.sh | |
parent | 75c1e6132095245b87c1acaa0c4272a917aa6ad3 (diff) |
fix(BASH/Compiler): error in if condition (#5983)
Diffstat (limited to 'apps/compiler/includes/functions.sh')
-rw-r--r-- | apps/compiler/includes/functions.sh | 2 |
1 files changed, 1 insertions, 1 deletions
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" |