From a80e1ed88facad04df40649f279f2b96d10ec36a Mon Sep 17 00:00:00 2001 From: Rezart Qelibari Date: Sun, 23 Jan 2022 01:13:48 +0100 Subject: [PATCH] Run git quietly --- bootstrap.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootstrap.sh b/bootstrap.sh index baafdf2..e397897 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -4,7 +4,7 @@ function main() { local tmddir="`mktemp -d -t 'macos-system'`" trap 'rm -fr -- "${tmpdir}"' EXIT pushd -q "${tmddir}" - git clone --recurse-submodules https://github.com/astzweig/macos-system.git . + git clone -q --recurse-submodules https://github.com/astzweig/macos-system.git . ./install.sh popd -q }