Add auto downloading of files #4

Merged
Fascinated merged 13 commits from development into master 2023-07-12 13:45:19 +00:00
Showing only changes of commit 692227f420 - Show all commits

@ -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