From fe301a019be5f388cadb086961030802ef14bc80 Mon Sep 17 00:00:00 2001 From: Leah Rowe Date: Wed, 17 Sep 2025 17:27:39 +0100 Subject: vendor.sh: add missing error handle on sha512sum it's still outputting to a file, with an error handle there, but use of x_ on the sha512sum command itself adds further assurance of reliability. Signed-off-by: Leah Rowe --- include/vendor.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include') diff --git a/include/vendor.sh b/include/vendor.sh index a46ccc22..9d913b5a 100644 --- a/include/vendor.sh +++ b/include/vendor.sh @@ -316,7 +316,7 @@ prep() mksha512() { [ "${1%/*}" != "$1" ] && x_ cd "${1%/*}" - sha512sum ./"${1##*/}" >> "$2" || \ + x_ sha512sum ./"${1##*/}" >> "$2" || \ err "!sha512sum \"$1\" > \"$2\"" "mksha512" "$@" } -- cgit v1.2.1