Allow resuming from a failure during the "init" phase

This also shifts build failure transitions from individual functions
in utils.py to the init module handler.
This commit is contained in:
mprahl
2017-11-06 13:03:10 -05:00
parent 80df4be363
commit d8f126e978
9 changed files with 158 additions and 37 deletions

View File

@@ -132,7 +132,7 @@ def get_variant_dict(data):
result['active'] = data['active']
if not result:
raise ValueError("Couldn't get variant_dict from %s" % data)
raise RuntimeError("Couldn't get variant_dict from %s" % data)
return result