Update commands doc.

The current Makefile template doesn't use `s3cmd` anymore but `aws s3 sync`.
This commit is contained in:
Harald Wartig 2016-08-06 10:54:19 +02:00 committed by GitHub
parent 2059394d5c
commit f8dc8b0a2d
1 changed files with 2 additions and 2 deletions

View File

@ -6,5 +6,5 @@ The Makefile contains the central entry points for common tasks related to this
Syncing data to S3 Syncing data to S3
^^^^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^^^^^
* `make sync_data_to_s3` will use `s3cmd` to recursively sync files in `data/` up to `s3://{{ cookiecutter.s3_bucket }}/data/`. * `make sync_data_to_s3` will use `aws s3 sync` to recursively sync files in `data/` up to `s3://{{ cookiecutter.s3_bucket }}/data/`.
* `make sync_data_from_s3` will use `s3cmd` to recursively sync files from `s3://{{ cookiecutter.s3_bucket }}/data/` to `data/`. * `make sync_data_from_s3` will use `aws s3 sync` to recursively sync files from `s3://{{ cookiecutter.s3_bucket }}/data/` to `data/`.