hooks/do-fetch/00-distfiles: error out if distfiles aren't verified (found by Gottox).

This commit is contained in:
Juan RP 2014-03-07 11:12:52 +01:00
parent 3016320cb0
commit ede40cdc41
1 changed files with 4 additions and 0 deletions

View File

@ -102,4 +102,8 @@ hook() {
fi
dfcount=$(($dfcount + 1))
done
if [ "$rval" -ne 0 ]; then
msg_error "$pkgver: couldn't verify distfiles, exiting...\n"
fi
}