Bug 1274611: spell target-tasks.json with `-`; r=wcosta draft
authorDustin J. Mitchell <dustin@mozilla.com>
Wed, 01 Jun 2016 20:29:08 +0000
changeset 375896 a1aa4dc77d1c63815f32b6b07e1a17d562d63c09
parent 375895 15a2bfe11cb9ca68c9e986584a0417c8b1ebbecd
child 375897 9fc876dd9c95ee2e54f191feabdf5e59cfd5e3bc
push id20422
push userdmitchell@mozilla.com
push dateMon, 06 Jun 2016 22:28:57 +0000
reviewerswcosta
bugs1274611
milestone49.0a1
Bug 1274611: spell target-tasks.json with `-`; r=wcosta MozReview-Commit-ID: Aij7wL3onop
taskcluster/taskgraph/decision.py
--- a/taskcluster/taskgraph/decision.py
+++ b/taskcluster/taskgraph/decision.py
@@ -64,17 +64,17 @@ def taskgraph_decision(options):
     # write out the parameters used to generate this graph
     write_artifact('parameters.yml', dict(**parameters))
 
     # write out the full graph for reference
     write_artifact('full-task-graph.json',
                    taskgraph_to_json(tgg.full_task_graph))
 
     # write out the target task set to allow reproducing this as input
-    write_artifact('target_tasks.json',
+    write_artifact('target-tasks.json',
                    tgg.target_task_set.tasks.keys())
 
     # write out the optimized task graph to describe what will actually happen,
     # and the map of labels to taskids
     write_artifact('task-graph.json',
                    taskgraph_to_json(tgg.optimized_task_graph))
     write_artifact('label-to-taskid.json', tgg.label_to_taskid)