diff options
author | Aleksey Kladov <[email protected]> | 2019-10-23 16:13:40 +0100 |
---|---|---|
committer | Aleksey Kladov <[email protected]> | 2019-10-23 16:57:18 +0100 |
commit | b5f13d8d51ef9107363a60b894a741ab596921ce (patch) | |
tree | 32fa43c640821d11d283e6f13ed41057d18dd27a /xtask/src/bin | |
parent | edf4d8e555c6847fb9e6e61d727c4def11789bfc (diff) |
xtask: move codegen to a module
Diffstat (limited to 'xtask/src/bin')
-rw-r--r-- | xtask/src/bin/pre-commit.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xtask/src/bin/pre-commit.rs b/xtask/src/bin/pre-commit.rs index 4ee864756..cc6ccb25e 100644 --- a/xtask/src/bin/pre-commit.rs +++ b/xtask/src/bin/pre-commit.rs | |||
@@ -2,10 +2,10 @@ | |||
2 | 2 | ||
3 | use std::process::Command; | 3 | use std::process::Command; |
4 | 4 | ||
5 | use xtask::{project_root, run, run_rustfmt, Overwrite, Result}; | 5 | use xtask::{codegen::Mode, project_root, run, run_rustfmt, Result}; |
6 | 6 | ||
7 | fn main() -> Result<()> { | 7 | fn main() -> Result<()> { |
8 | run_rustfmt(Overwrite)?; | 8 | run_rustfmt(Mode::Overwrite)?; |
9 | update_staged() | 9 | update_staged() |
10 | } | 10 | } |
11 | 11 | ||