From 3b175cdbec73aece45b6f87e9dbffae05e3be9c5 Mon Sep 17 00:00:00 2001 From: Chirag Aggarwal Date: Fri, 15 May 2026 12:22:17 +0530 Subject: [PATCH] chore: update Command Line SDK to 21.0.0 --- .github/workflows/publish.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 5443091..7d3b91a 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -99,8 +99,8 @@ jobs: verify_signature() { local file="$1" local output rc - output="$(osslsigncode verify -in "$file" 2>&1)" - rc=$? + rc=0 + output="$(osslsigncode verify -in "$file" 2>&1)" || rc=$? echo "--- $file (osslsigncode exit $rc) ---" echo "$output"