blob: b3164b0646179046aa3918158e3999384a51af0c (
plain) (
blame)
1
2
3
4
5
6
7
|
#!/bin/sh
set -e
WORK=/home/git/build/irc-bots
OUT=/home/git/build/irc-bots-out
python3 "$WORK/scripts/gen_bots.py" "$WORK" "$OUT"
rsync -rlptD --delete "$OUT/" /var/www/irc.gumx.cc/bots/
echo "irc-bots deployed"
|