diff options
author | Dave Reisner <dreisner@archlinux.org> | 2011-07-04 20:54:09 +0200 |
---|---|---|
committer | Dave Reisner <dreisner@archlinux.org> | 2011-07-05 05:00:25 +0200 |
commit | e116d008ca727c2dfbce25809821db6bf354f461 (patch) | |
tree | ad049656aa09c86b19d3e5f2d5973b6cead56ac0 /lsinitcpio | |
parent | 9e94550348a9bc523b7f31944b8b1806c70eacd9 (diff) | |
download | mkinitcpio-e116d008ca727c2dfbce25809821db6bf354f461.tar.gz mkinitcpio-e116d008ca727c2dfbce25809821db6bf354f461.tar.xz |
lsinitcpio: fix logical error in reading compression0.7.2
Diffstat (limited to 'lsinitcpio')
-rwxr-xr-x | lsinitcpio | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -87,7 +87,7 @@ readonly NC BOLD BLUE GREEN RED YELLOW # read compression type case "$(file -b "$image")" in - data|LZMA*) compress=lzma ;; + @(data|LZMA)*) compress=lzma ;; gzip*) compress=gzip ;; bzip2*) compress=bzip2 ;; lzop*) compress=lzop ;; |