Skip to content

Commit

Permalink
fix multiple signature test on Windows
Browse files Browse the repository at this point in the history
Signed-off-by: Jake Sanders <jsand@google.com>
  • Loading branch information
Jake Sanders committed Dec 8, 2021
1 parent 968e3ab commit 62a6052
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/e2e_test_secrets.sh
Original file line number Diff line number Diff line change
Expand Up @@ -108,9 +108,9 @@ if (./cosign verify-blob --key ${verification_key} --signature myblob2.sig myblo
./cosign verify-blob --key ${verification_key} --signature myblob2.sig myblob2

## sign and verify multiple blobs
./cosign sign-blob --key ${signing_key} myblob myblob2 > sigs
./cosign verify-blob --key ${verification_key} --signature <(head -n 1 sigs) myblob
./cosign verify-blob --key ${verification_key} --signature <(tail -n 1 sigs) myblob2
./cosign sign-blob --output-signature ./multi-blob-sigs --key ${signing_key} myblob myblob2
./cosign verify-blob --key ${verification_key} --signature <(head -n 1 ./multi-blob-sigs) myblob
./cosign verify-blob --key ${verification_key} --signature <(tail -n 1 ./multi-blob-sigs) myblob2

## upload blob/sget
blobimg="${TEST_INSTANCE_REPO}/blob"
Expand Down

0 comments on commit 62a6052

Please sign in to comment.