From a4099a66399a2ad3bfbe12680666437f603bf13e Mon Sep 17 00:00:00 2001 From: Manuel Thalmann Date: Tue, 16 Jul 2024 23:32:46 +0200 Subject: [PATCH] Silence unnecessary output --- scripts/Common/OS/setup.fish | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/Common/OS/setup.fish b/scripts/Common/OS/setup.fish index 59775979..1619767e 100644 --- a/scripts/Common/OS/setup.fish +++ b/scripts/Common/OS/setup.fish @@ -31,7 +31,7 @@ function runSetup function runInOS -S set -l script "/root/run_once" - wrapScript $argv | chroot "$mountDir" tee "$script" + wrapScript $argv | chroot "$mountDir" tee "$script" > /dev/null runChroot "$mountDir" chmod +x "$script" runChroot "$mountDir" "$script" runChroot "$mountDir" rm "$script"