fix(payload-import): replace unsupported kaem elif with nested if for checksum branch

This commit is contained in:
vxtls 2026-03-01 14:24:18 -05:00
parent f30c20b7be
commit e08abd6777

View file

@ -14,6 +14,8 @@ if match x${UPDATE_CHECKSUMS} xTrue; then
/usr/bin/payload-import
cp ${pkg}.checksums ${SRCDIR}
elif test -f ${pkg}.checksums; then
sha256sum -c ${pkg}.checksums
else
if test -f ${pkg}.checksums; then
sha256sum -c ${pkg}.checksums
fi
fi