Skip to content

Commit

Permalink
Merge pull request #5 from ThePooN/only-upload-files
Browse files Browse the repository at this point in the history
πŸ› Only upload files to S3
  • Loading branch information
peppy authored Apr 4, 2024
2 parents f01e1d5 + 040eeda commit f47383e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dump_all.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ set -e
./s3_purge_cache_file.sh index.html

if [[ $(ls -1 ./work | wc -l) != "0" ]]; then
for f in ./work/*; do
for f in $(find ./work -type f); do
./s3_upload.sh "$f"
done
fi
Expand Down

0 comments on commit f47383e

Please sign in to comment.