Hide git fetch output

This commit is contained in:
Kerollmops
2025-12-04 11:18:20 +01:00
parent ce0f04e9ee
commit 2dccacf273

View File

@@ -83,8 +83,8 @@ fn generate_prototype(args: PrototypeArgs) -> anyhow::Result<()> {
std::process::Command::new("git")
.arg("fetch")
.arg("--tags")
.stderr(Stdio::inherit())
.stdout(Stdio::inherit())
.stderr(Stdio::null())
.stdout(Stdio::null())
.status()?;
let output = std::process::Command::new("git")