diff options
-rwxr-xr-x | abuild | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -163,6 +163,9 @@ unpack() { *.zip) msg "Unpacking $s..." unzip "$s" -d "$srcdir" || return 1;; + *) + error "Archive not supported" + return 1;; esac done } |