Commit b6c02b0
authored
docs: Fix build command in deployment documentation (#2840)
The `Self Contained Executable` instructions in the `Deployment`
documentation contains an error in the sample code.
```sh Terminal
$ deno build
$ deno compile --include static --include _fresh --include deno.json -A main.ts
```
should be:
```sh Terminal
$ deno task build
$ deno compile --include static --include _fresh --include deno.json -A main.ts
```
This PR fixes that.1 parent 1321cda commit b6c02b0
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
76 | 76 | | |
77 | 77 | | |
78 | 78 | | |
79 | | - | |
| 79 | + | |
80 | 80 | | |
81 | 81 | | |
82 | 82 | | |
| |||
0 commit comments