diff --git a/setup.sh b/setup.sh
index ea0c9fea8703e5f5263cb9de71175110ea0323eb..8d26bb2d8b82810fb9e7c59f43d834a1c61270b7 100755
--- a/setup.sh
+++ b/setup.sh
@@ -58,26 +58,23 @@ echo ""
 echo "Starting configuration with cleaning up and pulling again."
 echo ""
 
-remove_all_configs
-clone_repositories
+remove_all_configs;
+clone_repositories;
 
-configure_letsencrypt
+configure_letsencrypt;
 
 if [ "$USE_JITSI" == "true" ]; then
-    git clone $JITSI_URL &
-    wait
-    ./"$JITSI_DIR"/setup.sh
+git clone $JITSI_URL
+./"$JITSI_DIR"/setup.sh
 fi
 
 if [ "$USE_MUMBLE" == "true" ];then
-    git clone $MUMBLE_WEB_URL & 
-    wait
-    configure_mumble_web
+git clone $MUMBLE_WEB_URL && echo "Build Mumble Web cloned"
+configure_mumble_web
 fi
 
 if [ "$USE_NOVNC" == "true" ];then
-    git clone $NOVNC_URL &
-    wait
+git clone $NOVNC_URL
 fi