diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2019-03-30 19:27:00 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-30 19:27:00 -0400 |
commit | 6744bb8d750b9ab11d2ec9448334732b98feb58a (patch) | |
tree | aff1fbe73c0aa804cbf041ed6ec968eaf310d076 /tools/format.py | |
parent | c9614d86c190b98bd8f0df9e17272387c3bad1d5 (diff) |
Call ninja directly from build.rs (#2020)
Diffstat (limited to 'tools/format.py')
-rwxr-xr-x | tools/format.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/format.py b/tools/format.py index b0d3bc5e4..8dec2117c 100755 --- a/tools/format.py +++ b/tools/format.py @@ -46,4 +46,4 @@ qrun([ "third_party/rustfmt/" + platform() + "/rustfmt", "--config-path", rustfmt_config, -] + find_exts(["cli", "core"], [".rs"])) +] + find_exts(["cli", "core", "tools"], [".rs"])) |