We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents bb0a270 + dd2024c commit 2fb5348Copy full SHA for 2fb5348
scripts/check-logs.py
@@ -149,6 +149,11 @@ def check_built_config(build):
149
state = None
150
if '=' in line:
151
name, state = line.split('=', 1)
152
+ # Treat empty string values as 'n', as TuxSuite only supports y|m|n
153
+ # for overriding configuration options, so 'n' may be used to reset
154
+ # a value
155
+ if state == '""':
156
+ state = 'n'
157
elif line.startswith("# CONFIG_"):
158
name, state = line.split(" ", 2)[1:]
159
if state != "is not set":
0 commit comments