diff options
author | Bert Belder <bertbelder@gmail.com> | 2018-07-08 19:14:55 +0200 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2018-07-08 13:40:18 -0400 |
commit | 7c5db007deb43d65550213ff07ad95bc0cce6f00 (patch) | |
tree | cfd7b299448250086eb7e423f28bceed33a95d66 /tools/format.py | |
parent | f917c5e722d7ee5abd58704eb0e5d49072249e94 (diff) |
tools: fix windows
This fixes most things, but format.py doesn't work yet, because
yapf is broken due to some depot_tools shimming python.
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 d1f555e5d..d1392df46 100755 --- a/tools/format.py +++ b/tools/format.py @@ -22,4 +22,4 @@ run([ # Do not format these. # js/msg_generated.ts # js/flatbuffers.js -run(["rustfmt", "--write-mode", "overwrite"] + glob("src/*.rs")) +run(["rustfmt", "-f", "--write-mode", "overwrite"] + glob("src/*.rs")) |