aboutsummaryrefslogtreecommitdiff
path: root/src/utils
diff options
context:
space:
mode:
authornotgne22020-11-07 00:13:31 -0700
committernotgne22020-11-07 00:13:31 -0700
commit3cfc12a2ca5e7d5f6a9c64ddfda025d7599ec8d8 (patch)
treebe8aaaa97d2b3d799c77fcdc2b3dc3a0cff849c4 /src/utils
parent53f4e752442718caf7786aba7e934118488d89b4 (diff)
Unmute some more outputs, document the remaining mutes
Diffstat (limited to 'src/utils')
-rw-r--r--src/utils/push.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/utils/push.rs b/src/utils/push.rs
index 16bf8e7..d52fbbe 100644
--- a/src/utils/push.rs
+++ b/src/utils/push.rs
@@ -75,6 +75,7 @@ pub async fn push_profile(
};
let build_exit_status = build_command
+ // Logging should be in stderr, this just stops the store path from printing for no reason
.stdout(Stdio::null())
.status()
.await
@@ -100,8 +101,6 @@ pub async fn push_profile(
.arg(&super::deploy_path_to_activate_path_str(
&deploy_defs.current_exe,
)?)
- .stdout(Stdio::null())
- .stderr(Stdio::null())
.status()
.await
.map_err(PushProfileError::SignError)?;