Skip to content

Commit e034328

Browse files
committed
Add #!/usr/bin/env cwl-runner to *.cwl
1 parent 7c7615c commit e034328

23 files changed

+31
-8
lines changed

tests/override/env-tool.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
class: CommandLineTool
23
cwlVersion: v1.0
34
inputs:

tests/override/env-tool_v1.1.0-dev1.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
class: CommandLineTool
23
cwlVersion: v1.1.0-dev1
34
inputs:

tests/utf_doc_example.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/wf/910.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

tests/wf/count-lines1-wf.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
class: Workflow
23
cwlVersion: v1.0
34
requirements:

tests/wf/default-dir5.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
inputs: []
@@ -18,4 +19,4 @@ steps:
1819
class: Directory
1920
location: inp1
2021
outputs: []
21-
arguments: [echo, $(inputs.inp2)]
22+
arguments: [echo, $(inputs.inp2)]

tests/wf/default-wf5.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
inputs: []
@@ -10,4 +11,4 @@ steps:
1011
step1:
1112
in: []
1213
out: []
13-
run: default-dir5.cwl
14+
run: default-dir5.cwl

tests/wf/expect_packed.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
{
23
"$graph": [
34
{

tests/wf/malformed_outputs.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
baseCommand: echo

tests/wf/networkaccess-fail.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
class: CommandLineTool
23
cwlVersion: v1.0
34
requirements:
@@ -12,4 +13,4 @@ arguments:
1213
- "-c"
1314
- valueFrom: |
1415
import urllib.request
15-
assert(urllib.request.urlopen("http://commonwl.org").code == 200)
16+
assert(urllib.request.urlopen("http://commonwl.org").code == 200)

0 commit comments

Comments
 (0)