Skip to content

Commit

Permalink
no-check flag is no longer necessary (#160)
Browse files Browse the repository at this point in the history
  • Loading branch information
ry authored Jun 15, 2023
1 parent 736f6ed commit c5d308a
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ contains the `denoland/deployctl` GitHub Action.
## Install

```shell
deno install --allow-read --allow-write --allow-env --allow-net --allow-run --no-check -r -f https://deno.land/x/deploy/deployctl.ts
deno install -Arf https://deno.land/x/deploy/deployctl.ts
```

## Usage
Expand Down
2 changes: 1 addition & 1 deletion deployctl.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env -S deno run --allow-read --allow-write --allow-env --allow-net --allow-run --no-check
#!/usr/bin/env -S deno run --allow-read --allow-write --allow-env --allow-net --allow-run

// Copyright 2021 Deno Land Inc. All rights reserved. MIT license.

Expand Down
1 change: 0 additions & 1 deletion tests/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ export function deployctl(
const deno = [
Deno.execPath(),
"run",
"--no-check",
];

if (permissions?.net) deno.push("--allow-net");
Expand Down

0 comments on commit c5d308a

Please sign in to comment.