blob: b622e072bcbfbc28554b5bd44c178de15b016823 [file] [edit]
def getRoot(config):
if not config.parent:
return config
return getRoot(config.parent)
root = getRoot(config)
if root.target_os not in ["Windows"]:
config.unsupported = True