mirror of
https://github.com/fosslinux/live-bootstrap.git
synced 2026-03-23 19:46:31 +01:00
fix(payload-import): replace unsupported kaem elif with nested if for checksum branch
This commit is contained in:
parent
f30c20b7be
commit
e08abd6777
1 changed files with 4 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue