Skip to content

Commit

Permalink
improve error message of operator not using latest webhook img
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew committed Aug 9, 2024
1 parent 4fe3215 commit 21690ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/scripts/verify_operator_releasable.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ verify_current_webhook_img() {
test -n "$current_webhook_img"
test -n "$webhook_image_used"

test "$webhook_image_used" = "$current_webhook_img"
test "$webhook_image_used" = "$current_webhook_img" || (echo "Operator is not using current version of webhook image" && exit 1)
}

verify_version_bump() {
Expand Down

0 comments on commit 21690ab

Please sign in to comment.