Skip to content

Commit

Permalink
Fix a typo in jenkins/runlocal which inadvertently revokes RHEL 9 sup…
Browse files Browse the repository at this point in the history
…port
  • Loading branch information
webbnh committed Apr 10, 2023
1 parent af615a2 commit 0745bb5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jenkins/runlocal
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ if [[ -z ${BASE_IMAGE} ]]; then
elif [[ ${ID} == "centos" && "${major}" == "9" ]]; then
# Only CentOS 9 is supported
BASE_IMAGE=${ID}:stream${major}
elif [[ ${ID} == "rhel" && "" == "9" ]]; then
elif [[ ${ID} == "rhel" && "${major}" == "9" ]]; then
# Only RHEL 9 is supported
BASE_IMAGE=ubi${major}:latest
else
Expand Down

0 comments on commit 0745bb5

Please sign in to comment.