From 692227f42081cbfedba362c9a799b0c417fc1451 Mon Sep 17 00:00:00 2001 From: Fascinated Date: Wed, 12 Jul 2023 14:38:42 +0100 Subject: [PATCH] fix wget command --- start.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/start.sh b/start.sh index 8a4125a..ccc9dfe 100644 --- a/start.sh +++ b/start.sh @@ -14,7 +14,7 @@ if [ -z "$(ls -A $workDir/public)" ]; then dir=$workDir/public/$item if [ ! -e "$dir" ]; then echo "Downloading $item to directory $dir" - wget -Pq $dir $baseUrl$item + wget -q -P $dir $baseUrl$item echo "Done" fi done