diff options
-rwxr-xr-x | archPackagesUpdate | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/archPackagesUpdate b/archPackagesUpdate index 4182fca2c..d5c4ff50c 100755 --- a/archPackagesUpdate +++ b/archPackagesUpdate @@ -272,7 +272,9 @@ if [ -f '.gitmodules' ]; then continue fi mkdir -p "${path}" - git clone "${url}" "${path}" + >&2 printf 'cloning %s into %s ...' "${url}" "${path}" + git clone -q "${url}" "${path}" + >&2 printf ' done.\n' done fi |