- await internals.exec(`aws s3 sync --acl public-read --delete ${this.staticDirectory} s3://${bucket}`);
- await internals.exec(`aws s3 cp --content-type 'text/plain; charset=utf-8 ' --acl public-read ${this.staticDirectory}/index.txt s3://${bucket}`);
+ internals.debuglog(`Copying ephemeral blog from ${this.staticDirectory}`);
+ await internals.exec(`rsync -r ${this.staticDirectory}/ ${host}`);