Skip to content

Commit

Permalink
Fix gsutil command; fix aws dl command to be recursive
Browse files Browse the repository at this point in the history
  • Loading branch information
dmannarino committed Nov 1, 2024
1 parent 5460f38 commit 3455576
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions batch/scripts/unify_projection.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ for s in ${SRC[@]}; do

echo "Now recursively downloading $s to $source_dir"
if [[ $s == gs://* ]]; then
gsutil cp -m -r "$s" "$source_dir"
gsutil -m cp -r "$s" "$source_dir"
elif [[ $s == s3://* ]]; then
aws s3 cp --no-progress "$s" "$source_dir"
aws s3 cp --recursive --no-progress "$s" "$source_dir"
fi
echo "Done downloading $s to $source_dir"

Expand Down

0 comments on commit 3455576

Please sign in to comment.