From b19af63a4bc7a2312f0f6720886426e73b24c43e Mon Sep 17 00:00:00 2001 From: Nico Date: Sat, 28 Jun 2025 23:23:37 +1000 Subject: [PATCH] fish: create tar verbosely in 0x0 function --- stow/.config/fish/functions/0x0.fish | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stow/.config/fish/functions/0x0.fish b/stow/.config/fish/functions/0x0.fish index 195318b..c45280c 100644 --- a/stow/.config/fish/functions/0x0.fish +++ b/stow/.config/fish/functions/0x0.fish @@ -1,7 +1,7 @@ function 0x0 --description 'Uploads a file or folder to 0x0.st' if test -d "$argv" set TMPFILE "$(mktemp --suffix '.tar')" - tar cf "$TMPFILE" "$argv" + tar cvf "$TMPFILE" "$argv" curl -F file="@$TMPFILE" -F expires=24 https://0x0.st else curl -F file=@"$argv" -F expires=24 https://0x0.st