From 7783b6bb5eb8191947ff22ae7d74ec92a917fcea Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Wed, 14 Jun 2023 12:33:06 -0400 Subject: [PATCH] no-check flag is no longer necessary --- README.md | 2 +- deployctl.ts | 2 +- tests/utils.ts | 1 - 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 0a058a6e..6e018f08 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/deployctl.ts b/deployctl.ts index 1cb3e371..5972a9fb 100755 --- a/deployctl.ts +++ b/deployctl.ts @@ -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. diff --git a/tests/utils.ts b/tests/utils.ts index 01bc70b9..d3682d77 100644 --- a/tests/utils.ts +++ b/tests/utils.ts @@ -19,7 +19,6 @@ export function deployctl( const deno = [ Deno.execPath(), "run", - "--no-check", ]; if (permissions?.net) deno.push("--allow-net");