Skip to content

Commit 58b3bb6

Browse files
committed
Merge pull request drivendataorg#29 from mrbell/master
Removed --recursive flag from s3 sync in the Makefile closes drivendataorg#28
2 parents 03a9621 + de9b340 commit 58b3bb6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

{{ cookiecutter.repo_name }}/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ lint:
2323
flake8 --exclude=lib/,bin/ .
2424

2525
sync_data_to_s3:
26-
aws s3 sync --recursive data/ s3://$(BUCKET)/data/
26+
aws s3 sync data/ s3://$(BUCKET)/data/
2727

2828
sync_data_from_s3:
29-
aws s3 sync --recursive s3://$(BUCKET)/data/ data/
29+
aws s3 sync s3://$(BUCKET)/data/ data/
3030

3131
#################################################################################
3232
# PROJECT RULES #

0 commit comments

Comments
 (0)