Skip to content

Commit 19c55b9

Browse files
committed
add missing #!
1 parent 7a8ec8d commit 19c55b9

File tree

5 files changed

+8
-3
lines changed

5 files changed

+8
-3
lines changed

tests/env.cwl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
#!/usr/bin/env cwl-runner
12
cwlVersion: v1.0
23
class: CommandLineTool
34
inputs: []

tests/env2.cwl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
#!/usr/bin/env cwl-runner
12
cwlVersion: v1.0
23
class: CommandLineTool
34
inputs: []

tests/secondary-files-string-v1.cwl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
#!/usr/bin/env cwl-runner
12
cwlVersion: v1.0
23
class: CommandLineTool
34
baseCommand:
@@ -16,4 +17,4 @@ outputs:
1617
type: File
1718
secondaryFiles: ^.fastq
1819
outputBinding:
19-
glob: $(inputs.fasta_path.basename)
20+
glob: $(inputs.fasta_path.basename)

tests/trs/md5sum-workflow.cwl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
#!/usr/bin/env cwl-runner
12
cwlVersion: v1.0
23
class: Workflow
34

@@ -14,4 +15,4 @@ steps:
1415
run: md5sum-tool.cwl
1516
in:
1617
input_file: input_file
17-
out: [output_file]
18+
out: [output_file]

tests/wf/optional-numerical-output-0.cwl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
#!/usr/bin/env cwl-runner
12
cwlVersion: v1.0
23
class: CommandLineTool
34
baseCommand:
@@ -13,4 +14,4 @@ outputs:
1314
outputBinding:
1415
glob: "a.txt"
1516
loadContents: true
16-
outputEval: "${\n return parseFloat(self[0].contents);\n}"
17+
outputEval: "${\n return parseFloat(self[0].contents);\n}"

0 commit comments

Comments
 (0)