From e418d9d720b01fe1128529704e46ba702a797f36 Mon Sep 17 00:00:00 2001 From: Rahix Date: Thu, 22 May 2025 17:20:01 +0200 Subject: [PATCH] manager: Reduce noise from git commands --- techtree-manager/src/render.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/techtree-manager/src/render.rs b/techtree-manager/src/render.rs index 6d77f0d..40cefad 100644 --- a/techtree-manager/src/render.rs +++ b/techtree-manager/src/render.rs @@ -34,6 +34,8 @@ pub async fn render_and_publish( .arg("-C") .arg(&render_repo) .arg("init") + .arg("--initial-branch=render") + .arg("--quiet") .success() .context("Failed to initialize render repository")?; @@ -88,6 +90,7 @@ pub async fn render_and_publish( .arg(&render_repo) .arg("push") .arg("--force") + .arg("--quiet") .arg(repo_auth_url.to_string()) .arg("HEAD:refs/heads/render") .status()