Skip to content

Commit 8bc1400

Browse files
committed
Apply suggestions made on #337
1 parent 6b74133 commit 8bc1400

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

src/faq.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,8 +83,8 @@ outputs:
8383
8484
There are two ways to reference a local script:
8585
86-
The first method involves adding the folder containing your scripts to the `PATH` environment variable.
87-
This allows you to run the shell script directly without using `sh` or `bash` commands.
86+
The first method involves adding the path to a folder containing your scripts to the `PATH` environment variable. This
87+
allows you to execute the shell script directly (without explicitly using the `sh` or `bash` commands).
8888

8989
Start with adding a _shebang_ at the top of your file:
9090

src/introduction/prerequisites.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,8 @@ of the following options for your operating system:
2626
- Windows
2727

2828
```{note}
29-
If you are using Windows, you will have to install the [Windows Subsystem for Linux 2](https://learn.microsoft.com/en-us/windows/wsl/install) (WSL2).
30-
Visit the `cwltool` [documentation](https://github.com/common-workflow-language/cwltool/blob/main/README.rst#ms-windows-users)
31-
for details on installing WSL2.
29+
If you are using Windows, you will have to install the Windows Subsystem for Linux 2 as documented in the
30+
[`cwltool` documentation for Microsoft Windows users](https://github.com/common-workflow-language/cwltool/blob/main/README.rst#ms-windows-users).
3231
Your operating system also needs internet access and a recent version of Python (3.6+).
3332
```
3433

@@ -88,7 +87,7 @@ You can run the CWL tool description by omitting the `--validate` option:
8887
:caption: Running `true.cwl` with `cwltool`.
8988
```
9089

91-
### Cwl-runner Python Module
90+
### Generic ``cwl-runner`` alias
9291

9392
`cwl-runner` is an implementation-agnostic alias for any CWL compliant runner. This simply means
9493
that the `cwl-runner` alias command can be invoked independently, and is not reliant on a particular

src/topics/command-line-tool.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -66,9 +66,10 @@ and in the [Outputs](../topics/outputs.md) sections.
6666

6767

6868
## Network Access
69-
This indicates whether a process requires outgoing IPv4/IPv6 network access.
70-
If a command-line tool is written manually in CWL v1.1+, there is a need to
71-
specify when network access is required.
69+
This indicates whether a process requires outgoing IPv4/IPv6 network
70+
access. Starting with CWL v1.1, programs are not granted network
71+
access by default, so you must include the requirement for network
72+
access in the specification of your tool.
7273

7374
```cwl
7475
cwlVersion: v1.2
@@ -80,6 +81,6 @@ requirements:
8081
```
8182

8283
```{note}
83-
CWL v1.0 command-line tools that are upgraded to v1.1
84-
or v1.2 get Network Access automatically.
84+
CWL v1.0 command-line tools that are upgraded to v1.1
85+
or v1.2 or v1.2 will have `networkAccess: true` set automatically.
8586
```

0 commit comments

Comments
 (0)