Removed --recursive flag from s3 sync in the Makefile

This commit is contained in:
Michael Bell 2016-05-24 16:53:17 -04:00
parent 03a96219ea
commit de9b34052d
1 changed files with 2 additions and 2 deletions

View File

@ -23,10 +23,10 @@ lint:
flake8 --exclude=lib/,bin/ . flake8 --exclude=lib/,bin/ .
sync_data_to_s3: sync_data_to_s3:
aws s3 sync --recursive data/ s3://$(BUCKET)/data/ aws s3 sync data/ s3://$(BUCKET)/data/
sync_data_from_s3: sync_data_from_s3:
aws s3 sync --recursive s3://$(BUCKET)/data/ data/ aws s3 sync s3://$(BUCKET)/data/ data/
################################################################################# #################################################################################
# PROJECT RULES # # PROJECT RULES #