Skip to content

Commit

Permalink
Fix gating
Browse files Browse the repository at this point in the history
  • Loading branch information
silug committed Sep 18, 2024
1 parent ac164ad commit d9c2490
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/simp/beaker_helpers.rb
Original file line number Diff line number Diff line change
Expand Up @@ -1571,7 +1571,7 @@ def install_simp_repos(suts, disable = [])
rescue
# Hack to temporarily support new OS releases
release = (release.to_i - 1).to_s
if release.to_i - real_release > 3
if real_release - release.to_i > 3
retry
else
raise "Unsupported OS #{os} #{real_release}"
Expand Down

0 comments on commit d9c2490

Please sign in to comment.