From 7020eead8683aad165b044624b7d936fc8f9aafe Mon Sep 17 00:00:00 2001 From: Matt Hamilton Date: Thu, 7 Jan 2016 16:20:23 -0500 Subject: [PATCH] [archive] correct unarchive aliases --- modules/archive/init.zsh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/archive/init.zsh b/modules/archive/init.zsh index 1c0426b..d135c2d 100644 --- a/modules/archive/init.zsh +++ b/modules/archive/init.zsh @@ -13,7 +13,7 @@ if (( ${+commands[pigz]} )); then fi if (( ${+commands[unpigz]} )); then - alias gunzip='pigz' + alias gunzip='unpigz' fi # @@ -25,5 +25,5 @@ if (( ${+commands[pbzip2]} )); then fi if (( ${+commands[pbunzip2]} )); then - alias bunzip2='pbzip2' + alias bunzip2='pbunzip2' fi