Skip to content

Commit

Permalink
docs: add --allow-net to install command
Browse files Browse the repository at this point in the history
  • Loading branch information
bcheidemann committed Aug 23, 2023
1 parent 341281b commit d713168
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Entype is a CLI tool and library which ingests serialized data formats
Entype can be installed using the Deno CLI:

```sh
deno install --allow-read https://deno.land/x/entype/main.ts
deno install --allow-read --allow-net https://deno.land/x/entype/main.ts
```

And can then be run using the `entype` commands:
Expand Down
2 changes: 1 addition & 1 deletion main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ async function main(args: string[]): Promise<0 | 1> {
}

if ("version" in config) {
console.log("1.2.0");
console.log("1.2.1");
return 0;
}

Expand Down

0 comments on commit d713168

Please sign in to comment.