From 2db67103ceab870d781d7065073791e07344795a Mon Sep 17 00:00:00 2001
From: Armin Co <armin.co@hs-bochum.de>
Date: Sun, 25 Oct 2020 21:45:11 +0100
Subject: [PATCH] Fix fiex path

---
 tools/update_containers.sh | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/tools/update_containers.sh b/tools/update_containers.sh
index 24d7450..139bd94 100755
--- a/tools/update_containers.sh
+++ b/tools/update_containers.sh
@@ -8,17 +8,17 @@ echo "Pulling images"
 echo ""
 
 # pull updated images 
-docker-compose "$docker_compose_files" pull
+docker-compose $docker_compose_files pull
 
 echo "Building images"
 echo ""
 
 # Build new images if neccessary
 if [ "$USE_MUMBLE" == "true" ]; then
-    docker-compose "$mumble_compose_file" build
+    docker-compose $mumble_compose_file build
 fi
 
 if [ "$USE_NOVNC" == "true" ]; then
-    docker-compose "$novnc_compose_file" build 
+    docker-compose $novnc_compose_file build 
 fi
 
-- 
GitLab