Skip to content

Commit

Permalink
Update comment
Browse files Browse the repository at this point in the history
  • Loading branch information
pr-watson committed Sep 3, 2024
1 parent 58803b7 commit bfee688
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion convert2rhel/actions/system_checks/duplicate_packages.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def run(self):
if system_info.version.major == 7 and "name or service not known" in output.lower():
self.duplicate_packages_failure()
return
# For el8 machines we can depend on just the return code being 1 to know the check failed
# For el8+ machines we can depend on just the return code being 1 to know the check failed
if system_info.version.major >= 8 and ret_code == 1:
self.duplicate_packages_failure()
return
Expand Down

0 comments on commit bfee688

Please sign in to comment.