From 824d98b3f41cbca3ff486951a99e2d22f9c03f58 Mon Sep 17 00:00:00 2001 From: overcuriousity Date: Thu, 7 Aug 2025 15:59:32 +0200 Subject: [PATCH] script --- deploy.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/deploy.sh b/deploy.sh index 912f30a..c3eb6f7 100755 --- a/deploy.sh +++ b/deploy.sh @@ -610,9 +610,9 @@ status_working "Deploying application files" PID=$! # Simple animated progress while copying - local frame=0 + frame=0 while kill -0 $PID 2>/dev/null; do - printf "\r${MAGENTA}${SPINNER_FRAMES[$frame]}${RESET} Copying files..." + printf "\r${MAGENTA}%s${RESET} Copying files..." "${SPINNER_FRAMES[$frame]}" frame=$(((frame + 1) % ${#SPINNER_FRAMES[@]})) sleep 0.1 done