Merge pull request #2139 from deiga/patch-1

Added '.war' extension to unzip
This commit is contained in:
Robby Russell 2013-10-08 19:25:17 -07:00
commit bbe4ea54fd
1 changed files with 1 additions and 1 deletions

View File

@ -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)