From 370909c766776df883685fd8303ccc37753fbf10 Mon Sep 17 00:00:00 2001 From: Armin Co <armin.co@hs-bochum.de> Date: Sun, 25 Oct 2020 21:23:25 +0100 Subject: [PATCH] Fixing strings --- config.sh | 4 ++-- tools/update_containers.sh | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/config.sh b/config.sh index 82685b2..b811d56 100755 --- a/config.sh +++ b/config.sh @@ -44,7 +44,7 @@ NOVNC_DIR=novnc NOVNC_URL="$GIT_URL$NOVNC_DIR".git if [ "$USE_NOVNC" == "true" ]; then novnc_compose_file=" -f novnc/docker-compose.yml " -DOCKER_COMPOSE_FILES+=$"$novnc_compose_file" +DOCKER_COMPOSE_FILES+="$novnc_compose_file" fi # Mumble @@ -52,6 +52,6 @@ MUMBLE_DIR=build-mumble-web MUMBLE_URL=https://github.com/Johni0702/mumble-web.git if [ "$USE_MUMBLE" == "true" ]; then mumble_compose_file=" -f build-mumble-web/docker-compose.production.yml" -DOCKER_COMPOSE_FILES+=$"$mumble_compose_file" +DOCKER_COMPOSE_FILES+="$mumble_compose_file" SUB_DOMAINS+="mumble-web" fi diff --git a/tools/update_containers.sh b/tools/update_containers.sh index 0674382..24d7450 100755 --- a/tools/update_containers.sh +++ b/tools/update_containers.sh @@ -15,10 +15,10 @@ echo "" # Build new images if neccessary if [ "$USE_MUMBLE" == "true" ]; then - docker-compose -f "$mumble_compose_file" build + docker-compose "$mumble_compose_file" build fi if [ "$USE_NOVNC" == "true" ]; then - docker-compose -f "$novnc_compose_file" build + docker-compose "$novnc_compose_file" build fi -- GitLab