blob: 0664b51980fde709820f781b4e5e124fb3e87593 (
plain)
1
2
3
4
5
6
7
8
|
#!/bin/bash
cp templates/index.html templates/page.html
python build.py
rsync -Lta --no-perms --no-owner --no-group --delete --exclude=sync.sh -vz -e ssh ./html/ oracle:/srv/davidovski/html
git push # push after everything to keep it all backed up
|