Removed --recursive flag from s3 sync in the Makefile
This commit is contained in:
parent
03a96219ea
commit
de9b34052d
|
@ -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 #
|
||||||
|
|
Loading…
Reference in New Issue