Skip to content

Commit

Permalink
fix comparison
Browse files Browse the repository at this point in the history
  • Loading branch information
strangiato committed May 29, 2024
1 parent 5f977ec commit 0ac4c06
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
progressing = true
msg = msg .. i .. ": " .. condition.type .. " | " .. condition.status .. " | " .. condition.reason .. " | " .. condition.message .. "\n"
elseif condition.status == "False" then
if condition.type = "LatestDeploymentReady" then
if condition.type == "LatestDeploymentReady" then
progressing = true
else
degraded = true
Expand Down

0 comments on commit 0ac4c06

Please sign in to comment.