Forráskód Böngészése

fix: command error with dx build --verbose (#1715)

error msg: cannot set both --verbose and --quiet
xfalcon 1 éve
szülő
commit
0cb13942da
1 módosított fájl, 2 hozzáadás és 1 törlés
  1. 2 1
      packages/cli/src/builder.rs

+ 2 - 1
packages/cli/src/builder.rs

@@ -265,7 +265,6 @@ pub fn build_desktop(config: &CrateConfig, _is_serve: bool) -> Result<BuildResul
     let mut cmd = subprocess::Exec::cmd("cargo")
         .cwd(&config.crate_dir)
         .arg("build")
-        .arg("--quiet")
         .arg("--message-format=json");
 
     if config.release {
@@ -273,6 +272,8 @@ pub fn build_desktop(config: &CrateConfig, _is_serve: bool) -> Result<BuildResul
     }
     if config.verbose {
         cmd = cmd.arg("--verbose");
+    } else {
+        cmd = cmd.arg("--quiet");
     }
 
     if config.custom_profile.is_some() {