| OLD | NEW |
| 1 [ | 1 [ |
| 2 { | 2 { |
| 3 "cmd": [ | 3 "cmd": [ |
| 4 "python", | 4 "python", |
| 5 "-u", | 5 "-u", |
| 6 "[BUILD]/scripts/slave/git_setup.py", | 6 "[BUILD]/scripts/slave/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 "cwd": "[SLAVE_BUILD]", |
| 12 "name": "git setup" | 13 "name": "git setup" |
| 13 }, | 14 }, |
| 14 { | 15 { |
| 15 "cmd": [ | 16 "cmd": [ |
| 16 "git", | 17 "git", |
| 17 "retry", | 18 "retry", |
| 18 "fetch", | 19 "fetch", |
| 19 "origin", | 20 "origin", |
| 20 "--recurse-submodules" | 21 "--recurse-submodules" |
| 21 ], | 22 ], |
| (...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 132 "git", | 133 "git", |
| 133 "bundle", | 134 "bundle", |
| 134 "create", | 135 "create", |
| 135 "[SLAVE_BUILD]/all.bundle", | 136 "[SLAVE_BUILD]/all.bundle", |
| 136 "--all" | 137 "--all" |
| 137 ], | 138 ], |
| 138 "cwd": "[SLAVE_BUILD]/src", | 139 "cwd": "[SLAVE_BUILD]/src", |
| 139 "name": "git bundle" | 140 "name": "git bundle" |
| 140 } | 141 } |
| 141 ] | 142 ] |
| OLD | NEW |