aboutsummaryrefslogtreecommitdiff
path: root/bin/upload
blob: 6a0702b1f6940acf7968496945f307b04b844013 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh
set -eu

cd "${LIVEDIR:-$HOME/Public/live/}"
for f in queue/*.webm; do
	rsync -avP -- "$f" toph:lives/
	: day="$(basename -- "$f" .webm)"
	: rm -rf "$day"/
	: rm -v "$f"
done