fix(metis): preserve retry command failures

This commit is contained in:
codex 2026-04-22 04:08:56 -03:00
parent 8b23c985ca
commit 8edb0c23a1

3
Jenkinsfile vendored
View File

@ -255,8 +255,9 @@ PY
while [ "${attempt}" -le "${attempts}" ]; do
if "$@"; then
return 0
fi
else
rc=$?
fi
if [ "${attempt}" -eq "${attempts}" ]; then
return "${rc}"
fi