diff options
author | EuAndreh <eu@euandre.org> | 2025-03-05 03:51:38 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2025-03-05 03:51:38 -0300 |
commit | 700f5a34db2b6b1c162e948aa77c2e3a2145c18a (patch) | |
tree | 78bd64a655c3f327a1a2e900dd75c72be32f1558 | |
parent | etc/guix/home.scm: Refer to go-full by name (diff) | |
download | dotfiles-700f5a34db2b6b1c162e948aa77c2e3a2145c18a.tar.gz dotfiles-700f5a34db2b6b1c162e948aa77c2e3a2145c18a.tar.xz |
bin/upload: rm
-rwxr-xr-x | bin/upload | 15 |
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 |