From 8ae3f89a79ac83416e61a57aa04292bb7d0ab365 Mon Sep 17 00:00:00 2001
From: Armin Co <armin.co@hs-bochum.de>
Date: Sun, 25 Oct 2020 22:17:06 +0100
Subject: [PATCH] A

---
 setup.sh | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/setup.sh b/setup.sh
index 1089a4b..ea0c9fe 100755
--- a/setup.sh
+++ b/setup.sh
@@ -64,17 +64,20 @@ clone_repositories
 configure_letsencrypt
 
 if [ "$USE_JITSI" == "true" ]; then
-    git clone $JITSI_URL
+    git clone $JITSI_URL &
+    wait
     ./"$JITSI_DIR"/setup.sh
 fi
 
 if [ "$USE_MUMBLE" == "true" ];then
-    git clone $MUMBLE_WEB_URL
+    git clone $MUMBLE_WEB_URL & 
+    wait
     configure_mumble_web
 fi
 
 if [ "$USE_NOVNC" == "true" ];then
-    git clone $NOVNC_URL
+    git clone $NOVNC_URL &
+    wait
 fi
 
 
-- 
GitLab