Skip to content

Commit

Permalink
style: pre-commit.ci auto fixes [...]
Browse files Browse the repository at this point in the history
  • Loading branch information
pre-commit-ci[bot] committed Sep 11, 2023
1 parent 48f9d64 commit 3ab123c
Showing 1 changed file with 15 additions and 13 deletions.
28 changes: 15 additions & 13 deletions src/taskgraph/transforms/job/run_task.py
Original file line number Diff line number Diff line change
Expand Up @@ -187,20 +187,22 @@ def generic_worker_run_task(config, job, taskdesc):
"directory": "{workdir}/.cache".format(**run),
}
)
worker["mounts"].extend([
{
"content": {
"url": script_url(config, "run-task"),
worker["mounts"].extend(
[
{
"content": {
"url": script_url(config, "run-task"),
},
"file": "./run-task",
},
{
"content": {
"url": script_url(config, "robustcheckout.py"),
},
"file": "./robustcheckout.py",
},
"file": "./run-task",
},
{
"content": {
"url": script_url(config, "robustcheckout.py"),
},
"file": "./robustcheckout.py",
},
])
]
)
if worker.get("env", {}).get("MOZ_FETCHES"):
worker["mounts"].append(
{
Expand Down

0 comments on commit 3ab123c

Please sign in to comment.