| OLD | NEW |
| 1 [ | 1 [ |
| 2 { | 2 { |
| 3 "cmd": [ | 3 "cmd": [ |
| 4 "echo", | 4 "echo", |
| 5 "Hello World" | 5 "Hello World" |
| 6 ], | 6 ], |
| 7 "name": "hello" | 7 "name": "hello" |
| 8 }, | 8 }, |
| 9 { | 9 { |
| 10 "cmd": [ | 10 "cmd": [ |
| 11 "echo", | 11 "echo", |
| 12 "Why hello, there." | 12 "Why hello, there." |
| 13 ], | 13 ], |
| 14 "name": "hello (2)" | 14 "name": "hello (2)" |
| 15 }, | 15 }, |
| 16 { | 16 { |
| 17 "cmd": [ | 17 "cmd": [ |
| 18 "mkdir", |
| 19 "something" |
| 20 ], |
| 21 "name": "mk subdir" |
| 22 }, |
| 23 { |
| 24 "cmd": [ |
| 25 "bash", |
| 26 "-c", |
| 27 "echo Why hello, there, in a subdir." |
| 28 ], |
| 29 "cwd": "[START_DIR]/something", |
| 30 "name": "something" |
| 31 }, |
| 32 { |
| 33 "cmd": [ |
| 34 "bash", |
| 35 "-c", |
| 36 "echo what happen" |
| 37 ], |
| 38 "name": "start_dir ignored" |
| 39 }, |
| 40 { |
| 41 "cmd": [ |
| 18 "bash", | 42 "bash", |
| 19 "-c", | 43 "-c", |
| 20 "echo Good bye, $friend." | 44 "echo Good bye, $friend." |
| 21 ], | 45 ], |
| 22 "env": { | 46 "env": { |
| 23 "friend": "Darth Vader" | 47 "friend": "Darth Vader" |
| 24 }, | 48 }, |
| 25 "name": "goodbye" | 49 "name": "goodbye" |
| 26 }, | 50 }, |
| 27 { | 51 { |
| (...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 120 "nothing" | 144 "nothing" |
| 121 ], | 145 ], |
| 122 "name": "no-op" | 146 "name": "no-op" |
| 123 }, | 147 }, |
| 124 { | 148 { |
| 125 "name": "$result", | 149 "name": "$result", |
| 126 "reason": "Invalid Step Data Access: StepDataAttributeError('The recipe atte
mpted to access missing step data \"json\" for step \"no-op\". Please examine th
at step for errors.',)", | 150 "reason": "Invalid Step Data Access: StepDataAttributeError('The recipe atte
mpted to access missing step data \"json\" for step \"no-op\". Please examine th
at step for errors.',)", |
| 127 "status_code": -1 | 151 "status_code": -1 |
| 128 } | 152 } |
| 129 ] | 153 ] |
| OLD | NEW |