blob: 520a963d011984d632735a69bf12d4b3bf3215ac [file] [log] [blame]
def getRoot(config):
if not config.parent:
return config
return getRoot(config.parent)
root = getRoot(config)
if root.host_os not in ["Darwin"]:
config.unsupported = True