fix check
All checks were successful
Publish Docker Image / docker (push) Successful in 2m10s

This commit is contained in:
Lee 2023-07-12 14:17:06 +01:00
parent f6e4e98965
commit c28f50f49e

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