Skip to content

Commit 6f0d165

Browse files
authored
Deno arguments are not in the correct order
When testing this Deno CLI complained about the order of arguments in the script ```me@me deno-edge-hello-world % deno run index.ts --allow-net=xxxxx.ingest.sentry.io Permission flags have likely been incorrectly set after the script argument. To grant permissions, set them before the script argument. For example: deno run --allow-read=. main.js error: Module not found "file:///Users/steveneubank/Desktop/deno-edge-hello-world/index.ts".````
1 parent 4a60351 commit 6f0d165

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

platform-includes/getting-started-config/javascript.deno.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@ To ensure the SDK can send events, you should enable network access for your
1515
ingestion domain:
1616

1717
```bash
18-
deno run index.ts --allow-net=___ORG_INGEST_DOMAIN___
18+
deno run --allow-net=___ORG_INGEST_DOMAIN___ index.ts
1919
```

0 commit comments

Comments
 (0)