diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2019-07-31 17:11:37 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-31 17:11:37 -0400 |
commit | 3971dcfe10b94e901a224b5328a9dafd1e2ecc08 (patch) | |
tree | e347644a90094774e56e9315119c31594ca60796 /tools/format.py | |
parent | b3541c38f5672ffb4a29d66dca19d88b9ecae478 (diff) |
Use system rustfmt instead of fixed binary (#2701)
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 543cd4c07..c7465516a 100755 --- a/tools/format.py +++ b/tools/format.py @@ -61,7 +61,7 @@ def clang_format(): def rustfmt(): print "rustfmt" qrun([ - "third_party/rustfmt/" + platform() + "/rustfmt", + "rustfmt", "--config-path", rustfmt_config, ] + find_exts(["cli", "core", "tools"], [".rs"])) |