From a0e02e881574f95575a50f2cea2b94f9061287ac Mon Sep 17 00:00:00 2001 From: David Runge Date: Sat, 18 Apr 2020 20:48:38 +0200 Subject: .zsh.after/functions.zsh: Forcing extraction of zstd tars to be local (ex() does not work with files that have a colon, as tar thinks it is a remote resource). --- .zsh.after/functions.zsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '.zsh.after') diff --git a/.zsh.after/functions.zsh b/.zsh.after/functions.zsh index 6dfefba..e00cc6c 100644 --- a/.zsh.after/functions.zsh +++ b/.zsh.after/functions.zsh @@ -174,7 +174,7 @@ ex() { unzip $1 ;; *.zst) - tar --zstd -xvf $1 + tar --zstd -xvf $1 --force-local ;; *.Z) uncompress $1 -- cgit v1.2.3-54-g00ecf