summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc Cornellà <marc.cornella@live.com>2015-12-11 14:13:30 +0100
committerMarc Cornellà <marc.cornella@live.com>2015-12-11 14:13:30 +0100
commit45e42efa45b1f1dee2996a2f2537b59aee540676 (patch)
tree51e12476f2d10bd5f7a3a3c884dc84851300400c
parent07fcbbe74c46ae5b691951b172cfd2425e31173a (diff)
parenta42a3eead76d2e2d20d135853f3fb0b5efc80ede (diff)
downloadzsh-45e42efa45b1f1dee2996a2f2537b59aee540676.tar.gz
zsh-45e42efa45b1f1dee2996a2f2537b59aee540676.tar.bz2
zsh-45e42efa45b1f1dee2996a2f2537b59aee540676.zip
Merge pull request #4657 from hghwng/master
Recognize Firefox addon and Android packages.
-rw-r--r--plugins/extract/extract.plugin.zsh2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/extract/extract.plugin.zsh b/plugins/extract/extract.plugin.zsh
index 690126ba6..5d0809e9a 100644
--- a/plugins/extract/extract.plugin.zsh
+++ b/plugins/extract/extract.plugin.zsh
@@ -52,7 +52,7 @@ function extract() {
(*.xz) unxz "$1" ;;
(*.lzma) unlzma "$1" ;;
(*.Z) uncompress "$1" ;;
- (*.zip|*.war|*.jar|*.sublime-package|*.ipsw) unzip "$1" -d $extract_dir ;;
+ (*.zip|*.war|*.jar|*.sublime-package|*.ipsw|*.xpi|*.apk) unzip "$1" -d $extract_dir ;;
(*.rar) unrar x -ad "$1" ;;
(*.7z) 7za x "$1" ;;
(*.deb)