blob: 4fb28becd4e3a1ed754884f79b8599f600cc26d4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/bin/sh
set -eu
# Run as a cronjob on the FreeBSD server to update the 'now' feeds and rebuild.
# Yes, it would be easier to rsync from a system with better guile support.
# TODO actually install haunt
cd "$HOME/www-personal"
./update.sh
"$HOME/git/haunt/pre-inst-env" haunt build
exec "$HOME/git/haunt/pre-inst-env" haunt publish
|