summaryrefslogtreecommitdiffstats
path: root/abuild
diff options
context:
space:
mode:
Diffstat (limited to 'abuild')
-rwxr-xr-xabuild3
1 files changed, 3 insertions, 0 deletions
diff --git a/abuild b/abuild
index cfa4484..9186fc5 100755
--- a/abuild
+++ b/abuild
@@ -160,6 +160,9 @@ unpack() {
msg "Unpacking $s..."
unlzma -c "$s" | tar -C "$srcdir" -x \
|| return 1;;
+ *.zip)
+ msg "Unpacking $s..."
+ unzip "$s" -d "$srcdir" || return 1;;
esac
done
}