| 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" |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 { | 35 { |
| 36 "cmd": [ | 36 "cmd": [ |
| 37 "git", | 37 "git", |
| 38 "retry", | 38 "retry", |
| 39 "fetch", | 39 "fetch", |
| 40 "origin", | 40 "origin", |
| 41 "master", | 41 "master", |
| 42 "--recurse-submodules" | 42 "--recurse-submodules" |
| 43 ], | 43 ], |
| 44 "cwd": "[SLAVE_BUILD]/src", | 44 "cwd": "[SLAVE_BUILD]/src", |
| 45 "env": { |
| 46 "PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s" |
| 47 }, |
| 45 "name": "git fetch" | 48 "name": "git fetch" |
| 46 }, | 49 }, |
| 47 { | 50 { |
| 48 "cmd": [ | 51 "cmd": [ |
| 49 "git", | 52 "git", |
| 50 "count-objects", | 53 "count-objects", |
| 51 "-v" | 54 "-v" |
| 52 ], | 55 ], |
| 53 "cwd": "[SLAVE_BUILD]/src", | 56 "cwd": "[SLAVE_BUILD]/src", |
| 54 "name": "count-objects after git fetch", | 57 "name": "count-objects after git fetch", |
| (...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 241 ], | 244 ], |
| 242 "cwd": "[SLAVE_BUILD]/src", | 245 "cwd": "[SLAVE_BUILD]/src", |
| 243 "name": "git bundle" | 246 "name": "git bundle" |
| 244 }, | 247 }, |
| 245 { | 248 { |
| 246 "name": "$result", | 249 "name": "$result", |
| 247 "recipe_result": null, | 250 "recipe_result": null, |
| 248 "status_code": 0 | 251 "status_code": 0 |
| 249 } | 252 } |
| 250 ] | 253 ] |
| OLD | NEW |