You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(ci): use || RC=$? to prevent set -e suppressing openssl diagnostics
With set -euo pipefail, 'OPENSSL_OUT="$(cmd)"' exits the script
immediately when cmd fails — before the error echo runs. Use the
'|| RC=$?' pattern so set -e is not triggered and the error output
is actually printed to the log.
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
0 commit comments