1
0
mirror of https://github.com/sehugg/8bitworkshop.git synced 2025-01-11 08:30:02 +00:00
8bitworkshop/scripts/sync-intro.sh

10 lines
247 B
Bash
Raw Normal View History

2018-07-26 12:44:09 -04:00
#!/bin/bash
. ./scripts/env.sh
grep "var VERSION" redir.html
mkdir -p .tmp
cp demo.html .tmp/index.html
2018-08-01 18:18:06 -04:00
rsync -rpilv --chmod=a+rx -e "ssh -p 2222" .tmp/index.html redir.html privacy.html css bootstrap images $RSYNC_PATH/
2018-07-26 12:44:09 -04:00
rm -fr .tmp
echo "Done."