diff options
Diffstat (limited to 'xtask/src/main.rs')
-rw-r--r-- | xtask/src/main.rs | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/xtask/src/main.rs b/xtask/src/main.rs index 81bb3a33f..f7a79362d 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::ReleaseCmd, |
21 | run_clippy, run_fuzzer, run_pre_cache, run_rustfmt, Result, | ||
21 | }; | 22 | }; |
22 | 23 | ||
23 | fn main() -> Result<()> { | 24 | fn main() -> Result<()> { |
@@ -102,7 +103,7 @@ FLAGS: | |||
102 | "release" => { | 103 | "release" => { |
103 | let dry_run = args.contains("--dry-run"); | 104 | let dry_run = args.contains("--dry-run"); |
104 | args.finish()?; | 105 | args.finish()?; |
105 | run_release(dry_run) | 106 | ReleaseCmd { dry_run }.run() |
106 | } | 107 | } |
107 | "dist" => { | 108 | "dist" => { |
108 | let nightly = args.contains("--nightly"); | 109 | let nightly = args.contains("--nightly"); |