From: tobtoht Date: Wed, 13 Mar 2024 19:18:11 +0000 (+0100) Subject: guix: temp fix attest script for flatpak X-Git-Url: https://git.nutra.tk/v1?a=commitdiff_plain;h=64e77d397e718d9733c9aca77a97433067a7f3d7;p=gamesguru%2Ffeather.git guix: temp fix attest script for flatpak --- diff --git a/contrib/guix/guix-attest b/contrib/guix/guix-attest index 1f07a205..3f016d60 100755 --- a/contrib/guix/guix-attest +++ b/contrib/guix/guix-attest @@ -121,6 +121,8 @@ if (( ${#sha256sum_fragments[@]} )); then for logdir in "${sha256sum_fragments[@]}"; do echo " '$logdir'" case "$logdir" in + "$LOGDIR_BASE"/*.pack/SHA256SUMS.part) + ;; "$LOGDIR_BASE"/*-codesigned/SHA256SUMS.part) codesigned_fragments+=("$logdir") ;; @@ -135,6 +137,8 @@ else exit 1 fi +noncodesigned_fragments+=("$OUTDIR_BASE/x86_64-linux-gnu.pack/SHA256SUMS.part") + ############## ## Attest ## ##############