diff options
author | David Runge <dave@sleepmap.de> | 2020-04-18 20:48:38 +0200 |
---|---|---|
committer | David Runge <dave@sleepmap.de> | 2020-04-18 20:48:38 +0200 |
commit | a0e02e881574f95575a50f2cea2b94f9061287ac (patch) | |
tree | df199de4d8c406a0dbdeb6d558a0128e50de7405 | |
parent | 39483e1f3e38554839cda924bd5a05fa216f0d89 (diff) | |
download | dotfiles-a0e02e881574f95575a50f2cea2b94f9061287ac.tar.gz dotfiles-a0e02e881574f95575a50f2cea2b94f9061287ac.tar.bz2 dotfiles-a0e02e881574f95575a50f2cea2b94f9061287ac.tar.xz dotfiles-a0e02e881574f95575a50f2cea2b94f9061287ac.zip |
.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).
-rw-r--r-- | .zsh.after/functions.zsh | 2 |
1 files changed, 1 insertions, 1 deletions
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 |