18870: Need to declare NODES as array
[arvados.git] / sdk / cwl / tests / 15241-writable-dir.cwl
1 cwlVersion: v1.0
2 class: CommandLineTool
3
4 requirements:
5   - class: InitialWorkDirRequirement
6     listing:
7       - entry: $(inputs.filesDir)
8         writable: true
9
10 inputs:
11   filesDir:
12     type: Directory
13
14 outputs:
15   results:
16     type: Directory
17     outputBinding:
18       glob: .
19
20 arguments: [touch, $(inputs.filesDir.path)/blurg.txt]