diff --git a/setup.sh b/setup.sh
index 1089a4b785b4042906cf52a865682611241194bf..ea0c9fea8703e5f5263cb9de71175110ea0323eb 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