diff --git a/go-sync-to-s3.sh b/go-sync-to-s3.sh new file mode 100755 index 0000000..23b9f9b --- /dev/null +++ b/go-sync-to-s3.sh @@ -0,0 +1,13 @@ +#!/bin/bash +# +# Sync up all of our files to the S3 bucket +# + +# Errors are fatal +set -e + +pushd $(dirname $0) > /dev/null + +aws s3 sync . s3://diceware.dmuth.org/ --exclude ".*" --exclude "node_modules/*" --delete + +