forked from kiss-community/kiss
kiss-chbuild: Verify checksums. Closes #152
This commit is contained in:
parent
1c6dd610e4
commit
e200e8b358
@ -12,6 +12,15 @@ cd "${cac_dir:=$KISS_ROOT${XDG_CACHE_HOME:-$HOME/.cache}/kiss}"
|
||||
|
||||
url=https://github.com/kisslinux/repo/releases/download/1.10.0/
|
||||
curl -OL "$url/kiss-chroot.tar.xz"
|
||||
curl -OL "$url/kiss-chroot.tar.xz.sha256"
|
||||
|
||||
log "Verifying checksums"
|
||||
|
||||
sha256sum -c < kiss-chroot.tar.xz.sha256 || {
|
||||
rm -f kiss-chroot.tar.xz
|
||||
log "Checksum verification failed."
|
||||
log "Re-run 'kiss-chbuild' to try again."
|
||||
}
|
||||
}
|
||||
|
||||
[ -d kiss-chroot ] || {
|
||||
|
Loading…
Reference in New Issue
Block a user