From 357dda1a4be9c8030138448bd52c792e3a6e2037 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nguy=E1=BB=85n=20=C4=90=E1=BB=A9c=20Thi=E1=BB=87n?= Date: Mon, 4 Aug 2025 09:19:19 +0700 Subject: [PATCH] Update cloudflare_workers.md Add --global flag since Permission flags can only be used in a global setting --- examples/tutorials/cloudflare_workers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/tutorials/cloudflare_workers.md b/examples/tutorials/cloudflare_workers.md index 208fd6cca..bb676ba11 100644 --- a/examples/tutorials/cloudflare_workers.md +++ b/examples/tutorials/cloudflare_workers.md @@ -23,7 +23,7 @@ In order to deploy Deno to Cloudflare, we'll use this community created CLI [Install it](https://denoflare.dev/cli/#installation): ```shell -deno install --unstable-worker-options --allow-read --allow-net --allow-env --allow-run --name denoflare --force \ +deno install --unstable-worker-options --allow-read --allow-net --global --allow-env --allow-run --name denoflare --force \ https://raw.githubusercontent.com/skymethod/denoflare/v0.6.0/cli/cli.ts ```