Simon Gardling 83d8e1cc88 rename
2022-03-08 12:21:32 -05:00

13 lines
333 B
Bash
Executable File

#!/bin/bash
set -e #kill script if error occurs
bash build.sh
echo "rsyncing"
rsync -av --delete --info=progress2 tmp/ rpi-public:/mnt/hdd/http_share/integral-demo/
rsync -av --delete --info=progress2 --exclude=".git" tmp/ ../titaniumtown.github.io/
rm -fr tmp
cd ../titaniumtown.github.io
git add .
git commit -m "update"
git push