Ensure same config file is not loaded multiple times

pull/2075/head
pukkandan 2 years ago
parent 1bad50eced
commit 2aa5e2cc01
No known key found for this signature in database
GPG Key ID: 0F00D95A001F4698

@ -1619,6 +1619,9 @@ def parseOpts(overrideArguments=None):
current_path = os.path.join(path, '%s.conf' % package)
config = _readOptions(current_path, default=None)
if config is not None:
current_path = os.path.realpath(current_path)
if current_path in paths.values():
return False
configs[name], paths[name] = config, current_path
return parser.parse_args(config)[0].ignoreconfig
return False

Loading…
Cancel
Save