Skip to content
Snippets Groups Projects
Unverified Commit ade0657c authored by Oliver Smith's avatar Oliver Smith
Browse files

kconfig check: NonBugError for --file too (MR 2399)

Use NonBugError when printing the error for the --file code path too.
parent b65d677d
No related branches found
No related tags found
1 merge request!2399kconfig check: don't print URL for each warning
......@@ -32,7 +32,7 @@ class KConfigCheck(commands.Command):
if pmb.parse.kconfig.check_file(self.file, components_list, details=self.details):
logging.info("kconfig check succeeded!")
return
raise RuntimeError("kconfig check failed!")
raise NonBugError("kconfig check failed!")
# Default to all kernel packages
if not self.packages:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment