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 c28f50f49e - Show all commits

@ -11,7 +11,7 @@ if [ -z "$(ls -A $workDir/public)" ]; then
for item in "${toDownload[@]}"
do
dir=$workDir/public/$item
if [ -e "$dir" ]; then
if [ ! -e "$dir" ]; then
echo "Downloading $item to directory $dir"
wget -P $dir $baseUrl$item
echo "Done"