Browse Source

Merge pull request #2139 from deiga/patch-1

Added '.war' extension to unzip
Robby Russell 10 years ago
parent
commit
bbe4ea54fd
1 changed files with 1 additions and 1 deletions
  1. 1 1
      plugins/extract/extract.plugin.zsh

+ 1 - 1
plugins/extract/extract.plugin.zsh

@@ -52,7 +52,7 @@ function extract() {
       (*.xz) unxz "$1" ;;
       (*.lzma) unlzma "$1" ;;
       (*.Z) uncompress "$1" ;;
-      (*.zip) unzip "$1" -d $extract_dir ;;
+      (*.zip|*.war|*.jar) unzip "$1" -d $extract_dir ;;
       (*.rar) unrar x -ad "$1" ;;
       (*.7z) 7za x "$1" ;;
       (*.deb)