Merge pull request #29 from mrbell/master

Removed --recursive flag from s3 sync in the Makefile

closes #28
This commit is contained in:
Peter Bull 2016-05-24 17:15:20 -04:00
commit 58b3bb6376
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 #