diff options
author | Mario Fetka <[email protected]> | 2012-04-20 01:30:46 (GMT) |
---|---|---|
committer | Mario Fetka <[email protected]> | 2012-04-20 01:30:46 (GMT) |
commit | 06567742c89221a07fd763f2a3c45fe03e2388fb (patch) | |
tree | a33eb0c77583845cf00fe36f6da83c0948e67872 /lib/builder-utils.sh | |
parent | c26374d993dc45a9667b2d6b768fef815e215c93 (diff) |
add lha support
Diffstat (limited to 'lib/builder-utils.sh')
-rw-r--r-- | lib/builder-utils.sh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/builder-utils.sh b/lib/builder-utils.sh index bb04b87..6ac35ea 100644 --- a/lib/builder-utils.sh +++ b/lib/builder-utils.sh @@ -62,6 +62,8 @@ function process_file() { $CMD_unzip $src -d $dst elif [ "$format" = "unrar" ]; then $CMD_unrar x $src $dst + elif [ "$format" = "lha" ]; then + $CMD_lha x -w=$dst $src else fatal_error "Unknown compression format: $format" fi |