Skip to content
Snippets Groups Projects
Unverified Commit e8d4c13c authored by Oliver Smith's avatar Oliver Smith
Browse files

distfile-check: better error for missing checksum

Replace
	"$distfile: failed to find urihash!"
with
	"$distfile: not found in sha512sums! Forgot to generate checksums?"
parent e049813b
No related branches found
No related tags found
No related merge requests found
Pipeline #144864 passed
......@@ -58,7 +58,8 @@ for s in $source; do
urihash="$(distfile_hash "$distfile")"
if [ -z "$urihash" ]; then
echo "ERROR: pkgname=$pkgname, distfile=$distfile:" \
"failed to find urihash!"
"not found in sha512sums! Forgot to generate" \
"checksums?"
exit 1
fi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment