2018-03-04 21:51:46 +00:00
|
|
|
#!/bin/sh
|
2018-03-20 14:04:31 +00:00
|
|
|
set -e
|
2018-03-04 21:51:46 +00:00
|
|
|
|
|
|
|
aws configure set preview.cloudfront true
|
|
|
|
aws --profile mitmproxy \
|
|
|
|
s3 sync --acl public-read ./public s3://docs.mitmproxy.org/stable
|
2018-03-07 09:45:08 +00:00
|
|
|
aws --profile mitmproxy \
|
|
|
|
cloudfront create-invalidation --distribution-id E1TH3USJHFQZ5Q \
|
|
|
|
--paths "/stable"
|