aboutsummaryrefslogtreecommitdiffstats
path: root/.zsh.after
diff options
context:
space:
mode:
authorDavid Runge <dave@sleepmap.de>2020-04-18 20:48:38 +0200
committerDavid Runge <dave@sleepmap.de>2020-04-18 20:48:38 +0200
commita0e02e881574f95575a50f2cea2b94f9061287ac (patch)
treedf199de4d8c406a0dbdeb6d558a0128e50de7405 /.zsh.after
parent39483e1f3e38554839cda924bd5a05fa216f0d89 (diff)
downloaddotfiles-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).
Diffstat (limited to '.zsh.after')
-rw-r--r--.zsh.after/functions.zsh2
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