Skip to content
Snippets Groups Projects
Verified Commit 46441d00 authored by Julian Ospald's avatar Julian Ospald :tea:
Browse files

Fix handling of bz2

parent 91334cd5
No related branches found
No related tags found
No related merge requests found
......@@ -1070,6 +1070,10 @@ unpack() {
debug_message "gzip -cd \"${filename}\" | tar -xf -"
( gzip -cd "${filename}" | tar xf - ; ) || die "unpacking failed!"
;;
bz2)
debug_message "bzip2 -cd \"${filename}\" | tar -xf -"
( bzip2 -cd "${filename}" | tar xf - ; ) || die "unpacking failed!"
;;
tar)
edo tar xf "${filename}"
;;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment