blob: a6d96d3054cf642e63efc861620c526bab9a1ac4 [file] [log] [blame]
def getRoot(config):
if not config.parent:
return config
return getRoot(config.parent)
root = getRoot(config)
if root.host_os in ['Windows', 'Darwin']:
config.unsupported = True