diff options
Diffstat (limited to 'bin/bootstrap-traverser.py')
-rwxr-xr-x | bin/bootstrap-traverser.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/bootstrap-traverser.py b/bin/bootstrap-traverser.py index 37c54f71..d2961312 100755 --- a/bin/bootstrap-traverser.py +++ b/bin/bootstrap-traverser.py @@ -79,7 +79,7 @@ def run_action(action_id, *, config, root, graph): return action_dir os.makedirs(action_dir) action_desc = graph["actions"][action_id] - for location, desc in action_desc["input"].items(): + for location, desc in action_desc.get("input", {}).items(): link(build(desc, config=config, root=root, graph=graph), os.path.join(action_dir, location)) cmd = action_desc["command"] |