File tree Expand file tree Collapse file tree 2 files changed +18
-0
lines changed Expand file tree Collapse file tree 2 files changed +18
-0
lines changed Original file line number Diff line number Diff line change @@ -434,6 +434,18 @@ $graph:
434
434
doc : |
435
435
A path to a file whose contents must be piped into the command's
436
436
standard input stream.
437
+ - name : stderr
438
+ type : ["null", string, "#Expression"]
439
+ doc : |
440
+ Capture the command's standard error stream to a file written to
441
+ the designated output directory.
442
+
443
+ If `stderr` is a string, it specifies the file name to use.
444
+
445
+ If `stderr` is an expression, the expression is evaluated and must
446
+ return a string with the file name to use to capture stderr. If the
447
+ return value is not a string, or the resulting path contains illegal
448
+ characters (such as the path separator `/`) it is an error.
437
449
- name : stdout
438
450
type : ["null", string, "#Expression"]
439
451
doc : |
Original file line number Diff line number Diff line change 44
44
tool : draft-4/cat3-tool.cwl
45
45
doc : Test command line with stdout redirection
46
46
47
+ - args : [egrep]
48
+ stderr : error.txt
49
+ job :
50
+ tool : draft-4/egrep-stderr.cwl
51
+ doc : Test command line with stdout redirection
52
+
47
53
- args : [cat]
48
54
job : draft-4/cat-job.json
49
55
stdin : draft-4/hello.txt
You can’t perform that action at this time.
0 commit comments