mirror of
https://github.com/dmuth/diceware.git
synced 2024-11-21 08:26:29 -05:00
14 lines
213 B
Bash
14 lines
213 B
Bash
|
#!/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
|
||
|
|
||
|
|