From 466b27673301e92a111f3aecbbac45f74a50135d Mon Sep 17 00:00:00 2001 From: CerberusV1 Date: Fri, 11 Oct 2024 18:55:08 +0200 Subject: [PATCH] maybe now? --- deploy.sh | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/deploy.sh b/deploy.sh index 71007d7..6826718 100755 --- a/deploy.sh +++ b/deploy.sh @@ -121,7 +121,16 @@ URL="https://maven.minecraftforge.net/net/minecraftforge/forge/${mc_forge_versio echo "Downloading installer" wget "$working_dir" "$URL" & + PID=$! +( + while kill -0 $PID 2> /dev/null; do + echo "Downloading....." + sleep 2 + done + echo "Download finished." +) & + wait $PID echo "Installing Server"