diff options
-rwxr-xr-x | bin/ebuild.sh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/bin/ebuild.sh b/bin/ebuild.sh index 666a79dd6..21a3afda8 100755 --- a/bin/ebuild.sh +++ b/bin/ebuild.sh @@ -394,6 +394,9 @@ unpack() { RAR|rar) unrar x -idq "${srcdir}/${x}" || die "$myfail" ;; + LHa|LHA|lha|lzh) + lha xqf "${srcdir}/${x}" || die "$myfail" + ;; *) echo "unpack ${x}: file format not recognized. Ignoring." ;; |