aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xbin/upload15
1 files changed, 0 insertions, 15 deletions
diff --git a/bin/upload b/bin/upload
deleted file mode 100755
index 877a8ff..0000000
--- a/bin/upload
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/bin/sh
-set -eu
-
-cd "${LIVEDIR:-$HOME/Public/live/}"
-for f in queue/*.webm; do
- if [ "$f" = 'queue/*.webm' ]; then
- break
- fi
-
- rsync -avP -- "$f" toph:lives/
- day=data/"$(basename -- "$f" .webm)"
- echo rm -rf "$day"/
- rm -rf "$day"/
- rm -v "$f"
-done