| OLD | NEW |
| 1 [ | 1 [ |
| 2 { | 2 { |
| 3 "cmd": [ | 3 "cmd": [ |
| 4 "python", | 4 "python", |
| 5 "-u", | 5 "-u", |
| 6 "RECIPE_MODULE[depot_tools::git]/resources/git_setup.py", | 6 "RECIPE_MODULE[depot_tools::git]/resources/git_setup.py", |
| 7 "--path", | 7 "--path", |
| 8 "[SLAVE_BUILD]/src", | 8 "[SLAVE_BUILD]/src", |
| 9 "--url", | 9 "--url", |
| 10 "https://chromium.googlesource.com/chromium/src.git" | 10 "https://chromium.googlesource.com/chromium/src.git" |
| 11 ], | 11 ], |
| 12 "name": "git setup" | 12 "name": "git setup" |
| 13 }, | 13 }, |
| 14 { | 14 { |
| 15 "cmd": [ | 15 "cmd": [ |
| 16 "git", | 16 "git", |
| 17 "retry", | 17 "retry", |
| 18 "fetch", | 18 "fetch", |
| 19 "origin", | 19 "origin", |
| 20 "master", | 20 "master", |
| 21 "--recurse-submodules" | 21 "--recurse-submodules" |
| 22 ], | 22 ], |
| 23 "cwd": "[SLAVE_BUILD]/src", | 23 "cwd": "[SLAVE_BUILD]/src", |
| 24 "env": { |
| 25 "PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s" |
| 26 }, |
| 24 "name": "git fetch" | 27 "name": "git fetch" |
| 25 }, | 28 }, |
| 26 { | 29 { |
| 27 "cmd": [ | 30 "cmd": [ |
| 28 "git", | 31 "git", |
| 29 "checkout", | 32 "checkout", |
| 30 "-f", | 33 "-f", |
| 31 "FETCH_HEAD" | 34 "FETCH_HEAD" |
| 32 ], | 35 ], |
| 33 "cwd": "[SLAVE_BUILD]/src", | 36 "cwd": "[SLAVE_BUILD]/src", |
| (...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 168 ], | 171 ], |
| 169 "cwd": "[SLAVE_BUILD]/src", | 172 "cwd": "[SLAVE_BUILD]/src", |
| 170 "name": "git bundle" | 173 "name": "git bundle" |
| 171 }, | 174 }, |
| 172 { | 175 { |
| 173 "name": "$result", | 176 "name": "$result", |
| 174 "recipe_result": null, | 177 "recipe_result": null, |
| 175 "status_code": 0 | 178 "status_code": 0 |
| 176 } | 179 } |
| 177 ] | 180 ] |
| OLD | NEW |