18870: Need to declare NODES as array
[arvados.git] / sdk / cwl / tests / keep-dir-test-input.cwl
1 # Copyright (C) The Arvados Authors. All rights reserved.
2 #
3 # SPDX-License-Identifier: Apache-2.0
4
5 class: CommandLineTool
6 cwlVersion: v1.0
7 requirements:
8   - class: ShellCommandRequirement
9 inputs:
10   indir:
11     type: Directory
12     inputBinding:
13       prefix: cd
14       position: -1
15 outputs:
16   outlist:
17     type: File
18     outputBinding:
19       glob: output.txt
20 arguments: [
21   {shellQuote: false, valueFrom: "&&"},
22   "find", ".",
23   {shellQuote: false, valueFrom: "|"},
24   "sort"]
25 stdout: output.txt