From dafde527222e88fd6586d25b1b710875dfdfc00c Mon Sep 17 00:00:00 2001
From: Ryan Hendrickson <ryan.hendrickson@alum.mit.edu>
Date: Mon, 9 Oct 2023 02:16:06 -0400
Subject: [PATCH] build02/nixpkgs-update: quiet the git command in updatescript
 fetcher

---
 hosts/build02/nixpkgs-update.nix | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/hosts/build02/nixpkgs-update.nix b/hosts/build02/nixpkgs-update.nix
index 0a2637c..b86225c 100644
--- a/hosts/build02/nixpkgs-update.nix
+++ b/hosts/build02/nixpkgs-update.nix
@@ -139,7 +139,7 @@ let
   };
 
   fetch-updatescript-cmd = pkgs.writeScriptBin "fetch-updatescript-cmd" ''
-    ${pkgs.git}/bin/git -C /var/cache/nixpkgs-update/updatescript/nixpkgs pull upstream
+    ${pkgs.git}/bin/git -C /var/cache/nixpkgs-update/updatescript/nixpkgs pull --quiet upstream
     ${pkgs.nix}/bin/nix eval --raw -f ${./packages-with-update-script.nix}
   '';