You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Allow multiple distribution-id
This allows multiple values in `distribution-id`; add by repeating the flag with new values e.g.:
```bash
s3deploy -bucket=mybucket -distribution-id=abcd -distribution-id=efgh
```
Fixesbep#142
Add 'ignore' flag
Via 'ignore' flag, you can exclude local files and keep remote objects stale that are matched with regexp.
Usage example:
```
s3deploy \
-source=public/ \
-bucket=example.com \
-region=eu-west-1 \
-key=$AWS_ACCESS_KEY_ID \
-secret=$AWS_SECRET_ACCESS_KEY \
-ignore="^unsynced-dir/.*$" \
-v
```
Number of ignored items is not added to any stats count.