Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Deno arguments are not in the correct order #9139

Merged
merged 2 commits into from
Feb 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@ To ensure the SDK can send events, you should enable network access for your
ingestion domain:

```bash
deno run index.ts --allow-net=___ORG_INGEST_DOMAIN___
deno run --allow-net=___ORG_INGEST_DOMAIN___ index.ts
```
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
To ensure the SDK can include your source code in stack traces, you should enable read access for your source files:

```bash
deno run index.ts --allow-read=./src
deno run --allow-read=./src index.ts
```
Loading