From a56086b883ec46f998ab0d78454337c58d914955 Mon Sep 17 00:00:00 2001 From: Armin Co <armin.co@hs-bochum.de> Date: Sun, 25 Oct 2020 19:51:44 +0100 Subject: [PATCH] Fixed if statement --- config.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/config.sh b/config.sh index 7098ee9..c7ea428 100755 --- a/config.sh +++ b/config.sh @@ -33,7 +33,7 @@ LETSENCRYPT_URL="$GIT_URL$LETSENCRYPT_DIR".git # Jitsi JITSI_DIR=jitsi-auto-config JITSI_URL="$GIT_URL$JITSI_DIR".git -if [$USE_JITSI = "true"]; then +if ["$USE_JITSI" = "true"]; then jitsi_compose_file=" -f jitsi/docker-compose.yml " DOCKER_COMPOSE_FILES+=$jitsi_compose_file SUB_DOMAINS+="jitsi," @@ -42,7 +42,7 @@ fi # noVNC - Screen sharing with VNC NOVNC_DIR=novnc NOVNC_URL="$GIT_URL$NOVNC_DIR".git -if [$USE_NO_VNC = "true"]; then +if ["$USE_NO_VNC" = "true"]; then novnc_compose_file=" -f ./novnc/docker-compose.yml " DOCKER_COMPOSE_FILES+=$novnc_compose_file fi @@ -50,7 +50,7 @@ fi # Mumble MUMBLE_DIR=build-mumble-web MUMBLE_URL=https://github.com/Johni0702/mumble-web.git -if [$USE_MUMBLE = "true"]; then +if ["$USE_MUMBLE" = "true"]; then mumble_compose_file=" -f ./build-mumble-web/docker-compose.production.yml" DOCKER_COMPOSE_FILES+=$mumble_compose_file SUB_DOMAINS+="mumble-web" -- GitLab