diff options
author | Casper Beyer <caspervonb@pm.me> | 2020-11-09 03:56:36 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-08 20:56:36 +0100 |
commit | b244766f9d31183ee10d37db37c30ca49a3c8aa2 (patch) | |
tree | 2de77dca360415dc78e98df9c3109d70717cfccf /tools/README.md | |
parent | 8cc5e18f80ad571869388d0094dadc02689a8c20 (diff) |
docs(tools): add a little note about cargo run (#8297)
Diffstat (limited to 'tools/README.md')
-rw-r--r-- | tools/README.md | 7 |
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> +``` |