Skip to content

Commit 7b4a193

Browse files
authored
Merge pull request #900 from fluxcd/fix-build-cosign
Fix build by enabling Cosign experimental
2 parents 9ab1522 + 1ff0a20 commit 7b4a193

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)