1
0
mirror of https://github.com/sehugg/8bitworkshop.git synced 2024-06-30 01:29:30 +00:00
8bitworkshop/scripts/sync-intro.sh

10 lines
257 B
Bash
Raw Normal View History

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