We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 93cec0c commit 02705fcCopy full SHA for 02705fc
cwltool/load_tool.py
@@ -52,7 +52,7 @@ def _convert_stdstreams_to_files(workflowobj):
52
for out in workflowobj['outputs']:
53
for streamtype in ['stdout', 'stderr']:
54
if out['type'] == streamtype:
55
- if out['outputBinding']:
+ if 'outputBinding' in out:
56
raise validate.ValidateException(
57
"Not allowed to specify outputBinding when"
58
" using %s shortcut." % streamtype)
0 commit comments