aboutsummaryrefslogtreecommitdiff
path: root/xtask/src/main.rs
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2020-06-08 12:58:54 +0100
committerAleksey Kladov <[email protected]>2020-06-08 12:58:54 +0100
commit97ea2dfc4b6b49a175d4d0f85b37c77bd1ea3f3b (patch)
tree862095016a179751c2f6f7070935f259a441a22c /xtask/src/main.rs
parent6e4fca5882bdd6d00dfcc384473c1f612e00baa2 (diff)
Move to a dedicated file
Diffstat (limited to 'xtask/src/main.rs')
-rw-r--r--xtask/src/main.rs5
1 files changed, 3 insertions, 2 deletions
diff --git a/xtask/src/main.rs b/xtask/src/main.rs
index 81bb3a33f..701c60fc0 100644
--- a/xtask/src/main.rs
+++ b/xtask/src/main.rs
@@ -16,8 +16,9 @@ use xtask::{
16 dist::run_dist, 16 dist::run_dist,
17 install::{ClientOpt, InstallCmd, ServerOpt}, 17 install::{ClientOpt, InstallCmd, ServerOpt},
18 not_bash::pushd, 18 not_bash::pushd,
19 pre_commit, project_root, run_clippy, run_fuzzer, run_pre_cache, run_release, run_rustfmt, 19 pre_commit, project_root,
20 Result, 20 release::run_release,
21 run_clippy, run_fuzzer, run_pre_cache, run_rustfmt, Result,
21}; 22};
22 23
23fn main() -> Result<()> { 24fn main() -> Result<()> {