output fix on zip/unzip checking

This commit is contained in:
Paul Liverman 2014-12-29 21:33:50 -08:00
parent b54ec59fe0
commit b9a53a4afb

4
build
View File

@ -31,11 +31,11 @@ fi
# check that zip and unzip are accessible # check that zip and unzip are accessible
# not sure if this is the best way to do this or not # not sure if this is the best way to do this or not
if ! which zip; then if ! which zip > /dev/null 2>&1; then
echo "zip not installed" echo "zip not installed"
exit 2; exit 2;
fi fi
if ! which unzip; then if ! which unzip > /dev/null 2>&1; then
echo "unzip not installed" echo "unzip not installed"
exit 3; exit 3;
fi fi