Run git quietly

This commit is contained in:
Rezart Qelibari
2022-01-23 01:13:48 +01:00
parent 621ca56eca
commit a80e1ed88f

View File

@@ -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
}