Skip to content

Commit 1ff0a20

Browse files
committed
Fix build by enabling Cosign experimental
Cosign 1.12.0 comes with a breaking change where verify blob requires `COSIGN_EXPERIMENTAL=1` Signed-off-by: Stefan Prodan <[email protected]>
1 parent 9ab1522 commit 1ff0a20

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

hack/install-libraries.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ download_files() {
4040
cosign_verify(){
4141
[[ $# -eq 3 ]] || fatal 'cosign_verify needs exactly 3 arguments'
4242

43-
cosign verify-blob --cert "$1" --signature "$2" "$3"
43+
COSIGN_EXPERIMENTAL=1 cosign verify-blob --cert "$1" --signature "$2" "$3"
4444

4545
[[ $? -eq 0 ]] || fatal 'signature verification failed'
4646
}

0 commit comments

Comments
 (0)