Skip to content

Commit

Permalink
Add permission --allow-env
Browse files Browse the repository at this point in the history
  • Loading branch information
ryo-ma committed Feb 6, 2023
1 parent 215bab3 commit 53f99a6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -385,7 +385,7 @@ $ deno run -A dim.ts install https://xxxxxx/data.json
4. Install dim

```
$ deno install --unstable --allow-read --allow-write --allow-run --allow-net dim.ts
$ deno install --unstable --allow-read --allow-write --allow-run --allow-net --allow-env dim.ts
```

# Run test and display coverage
Expand Down
8 changes: 4 additions & 4 deletions cross_compile.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
deno compile --unstable --allow-run --allow-read --allow-net --allow-write --target x86_64-unknown-linux-gnu --output x86_64-unknown-linux-gnu-dim dim.ts
deno compile --unstable --allow-run --allow-read --allow-net --allow-write --target aarch64-apple-darwin --output aarch64-apple-darwin-dim dim.ts
deno compile --unstable --allow-run --allow-read --allow-net --allow-write --target x86_64-apple-darwin --output x86_64-apple-darwin-dim dim.ts
deno compile --unstable --allow-run --allow-read --allow-net --allow-write --target x86_64-pc-windows-msvc --output x86_64-pc-windows-msvc-dim dim.ts
deno compile --unstable --allow-run --allow-read --allow-net --allow-write --allow-env --target x86_64-unknown-linux-gnu --output x86_64-unknown-linux-gnu-dim dim.ts
deno compile --unstable --allow-run --allow-read --allow-net --allow-write --allow-env --target aarch64-apple-darwin --output aarch64-apple-darwin-dim dim.ts
deno compile --unstable --allow-run --allow-read --allow-net --allow-write --allow-env --target x86_64-apple-darwin --output x86_64-apple-darwin-dim dim.ts
deno compile --unstable --allow-run --allow-read --allow-net --allow-write --allow-env --target x86_64-pc-windows-msvc --output x86_64-pc-windows-msvc-dim dim.ts

0 comments on commit 53f99a6

Please sign in to comment.