[archive] Support for multipart 7zip archives

Cover all multipart archives created by 7zip

Closes  #221
This commit is contained in:
djape 2017-10-14 17:28:03 +02:00 committed by Eric Nielsen
parent 8fbd143b01
commit 01e2766e8c
1 changed files with 1 additions and 1 deletions

View File

@ -37,6 +37,6 @@ case "${archive_name}" in
(*.rar) unrar &> /dev/null \
&& unrar x -ad "${archive_name}" \
|| rar x -ad "${archive_name}" ;;
(*.7z) 7za x "${archive_name}" ;;
(*.7z|*.001) 7za x "${archive_name}" ;;
(*) print "${0}: unknown archive type: ${archive_name}" ;;
esac