| OLD | NEW |
| 1 [ | 1 [ |
| 2 { | 2 { |
| 3 "cmd": [ | 3 "cmd": [ |
| 4 "python", | 4 "python", |
| 5 "-u", | 5 "-u", |
| 6 "RECIPE_MODULE[recipe_engine::file]/resources/fileutil.py", | 6 "RECIPE_MODULE[recipe_engine::file]/resources/fileutil.py", |
| 7 "--json-output", | 7 "--json-output", |
| 8 "/path/to/tmp/json", | 8 "/path/to/tmp/json", |
| 9 "ensure-directory", | 9 "ensure-directory", |
| 10 "--mode", | 10 "--mode", |
| (...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 94 "copy", | 94 "copy", |
| 95 "cc", | 95 "cc", |
| 96 "[START_DIR]/some dir/cc" | 96 "[START_DIR]/some dir/cc" |
| 97 ], | 97 ], |
| 98 "infra_step": true, | 98 "infra_step": true, |
| 99 "name": "write cc" | 99 "name": "write cc" |
| 100 }, | 100 }, |
| 101 { | 101 { |
| 102 "cmd": [ | 102 "cmd": [ |
| 103 "python", | 103 "python", |
| 104 "-u", |
| 105 "RECIPE_MODULE[recipe_engine::file]/resources/fileutil.py", |
| 106 "--json-output", |
| 107 "/path/to/tmp/json", |
| 108 "filesizes", |
| 109 "a", |
| 110 "aa", |
| 111 "b", |
| 112 "bb", |
| 113 "c", |
| 114 "cc" |
| 115 ], |
| 116 "infra_step": true, |
| 117 "name": "check filesizes", |
| 118 "stdout": "/path/to/tmp/", |
| 119 "~followup_annotations": [ |
| 120 "@@@STEP_LOG_END@filesizes@@@" |
| 121 ] |
| 122 }, |
| 123 { |
| 124 "cmd": [ |
| 125 "python", |
| 104 "-u", | 126 "-u", |
| 105 "RECIPE_MODULE[recipe_engine::file]/resources/fileutil.py", | 127 "RECIPE_MODULE[recipe_engine::file]/resources/fileutil.py", |
| 106 "--json-output", | 128 "--json-output", |
| 107 "/path/to/tmp/json", | 129 "/path/to/tmp/json", |
| 108 "rmtree", | 130 "rmtree", |
| 109 "[START_DIR]/some other dir" | 131 "[START_DIR]/some other dir" |
| 110 ], | 132 ], |
| 111 "infra_step": true, | 133 "infra_step": true, |
| 112 "name": "make sure dest is gone" | 134 "name": "make sure dest is gone" |
| 113 }, | 135 }, |
| (...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 274 ], | 296 ], |
| 275 "infra_step": true, | 297 "infra_step": true, |
| 276 "name": "remove \"some other dir/*\"" | 298 "name": "remove \"some other dir/*\"" |
| 277 }, | 299 }, |
| 278 { | 300 { |
| 279 "name": "$result", | 301 "name": "$result", |
| 280 "recipe_result": null, | 302 "recipe_result": null, |
| 281 "status_code": 0 | 303 "status_code": 0 |
| 282 } | 304 } |
| 283 ] | 305 ] |
| OLD | NEW |