mirror of
https://github.com/sehugg/8bitworkshop.git
synced 2024-11-18 18:07:35 +00:00
10 lines
247 B
Bash
Executable File
10 lines
247 B
Bash
Executable File
#!/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 redir.html privacy.html css bootstrap images $RSYNC_PATH/
|
|
rm -fr .tmp
|
|
echo "Done."
|