Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(736)

Side by Side Diff: recipe_modules/step/example.expected/basic.json

Issue 2886903004: Revert of [recipe_modules/step] do not set cwd if it is start_dir. (Closed)
Patch Set: Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « recipe_modules/step/example.py ('k') | recipe_modules/step/example.expected/defer_results.json » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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": [
42 "bash", 18 "bash",
43 "-c", 19 "-c",
44 "echo Good bye, $friend." 20 "echo Good bye, $friend."
45 ], 21 ],
46 "env": { 22 "env": {
47 "friend": "Darth Vader" 23 "friend": "Darth Vader"
48 }, 24 },
49 "name": "goodbye" 25 "name": "goodbye"
50 }, 26 },
51 { 27 {
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
137 "name": "application" 113 "name": "application"
138 }, 114 },
139 { 115 {
140 "name": "$result", 116 "name": "$result",
141 "recipe_result": { 117 "recipe_result": {
142 "test_me": 3 118 "test_me": 3
143 }, 119 },
144 "status_code": 0 120 "status_code": 0
145 } 121 }
146 ] 122 ]
OLDNEW
« no previous file with comments | « recipe_modules/step/example.py ('k') | recipe_modules/step/example.expected/defer_results.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698