Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,12 @@ The BIDS Validator can be run with the [Deno][] runtime
(see [Deno - Installation][] for detailed installation instructions):

```shell
deno run -ERN jsr:@bids/validator
deno run -ERWN jsr:@bids/validator
```

Deno by default sandboxes applications like a web browser.
`-E`, `-R` and `-N` allow the validator to read environment variables,
local files, and network locations.
`-E`, `-R`, '-W', and `-N` allow the validator to read environment variables,
read/write local files, and read network locations.

### Configuration file

Expand Down
8 changes: 4 additions & 4 deletions docs/user_guide/command-line.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,19 +10,19 @@ In general, there is no need to install Deno applications.
`deno run` allows running from the Javascript Repository:

```sh
deno run -ERN jsr:@bids/validator <dataset>
deno run -ERWN jsr:@bids/validator <dataset>
```

However, you can also install a lightweight script (into `$HOME/.deno/bin`):

```sh
deno install -ERN -g -n bids-validator jsr:@bids/validator
deno install -ERWN -g -n bids-validator jsr:@bids/validator
```

Or compile a bundled binary:

```sh
deno compile -ERN -o bids-validator jsr:@bids/validator
deno compile -ERWN -o bids-validator jsr:@bids/validator
```

## Usage
Expand All @@ -36,7 +36,7 @@ The BIDS Validator takes a single dataset as input:
:sync: run

```sh
deno run -ERN jsr:@bids/validator <dataset>
deno run -ERWN jsr:@bids/validator <dataset>
```

:::
Expand Down