summaryrefslogtreecommitdiff
path: root/tools/README.md
diff options
context:
space:
mode:
authorCasper Beyer <caspervonb@pm.me>2020-11-09 03:56:36 +0800
committerGitHub <noreply@github.com>2020-11-08 20:56:36 +0100
commitb244766f9d31183ee10d37db37c30ca49a3c8aa2 (patch)
tree2de77dca360415dc78e98df9c3109d70717cfccf /tools/README.md
parent8cc5e18f80ad571869388d0094dadc02689a8c20 (diff)
docs(tools): add a little note about cargo run (#8297)
Diffstat (limited to 'tools/README.md')
-rw-r--r--tools/README.md7
1 files changed, 7 insertions, 0 deletions
diff --git a/tools/README.md b/tools/README.md
index 2949f729d..c408e78c5 100644
--- a/tools/README.md
+++ b/tools/README.md
@@ -23,3 +23,10 @@ To run linting:
```sh
deno run --allow-read --allow-write --allow-run --unstable ./tools/lint.js
```
+
+Tip: You can also use cargo to run the current or pending build of the deno
+executable
+
+```sh
+cargo run -- run --allow-read --allow-write --allow-run --unstable ./tools/<script>
+```