diff options
Diffstat (limited to 'docs/tools/script_installer.md')
-rw-r--r-- | docs/tools/script_installer.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/tools/script_installer.md b/docs/tools/script_installer.md index a5f37659c..54ced70f6 100644 --- a/docs/tools/script_installer.md +++ b/docs/tools/script_installer.md @@ -62,7 +62,7 @@ deno install --allow-net --allow-read https://deno.land/std@$STD_VERSION/http/fi The above command creates an executable called `file_server` that runs with network and read permissions and binds to port 8080. -For good practice, use the [`import.meta.main`](../examples/testing_if_main.md) +For good practice, use the [`import.meta.main`](../examples/module_metadata.md) idiom to specify the entry point in an executable script. Example: |