|
@@ -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() {
|