From 24431b2c77df50f9dd63e14cb0bc32cabd043c42 Mon Sep 17 00:00:00 2001 From: Violeta Sebe Date: Tue, 30 Jul 2019 13:18:02 -0400 Subject: [PATCH] Add quiet option to git clone Signed-off-by: Violeta Sebe --- closed/get_j9_source.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/closed/get_j9_source.sh b/closed/get_j9_source.sh index 9f4c258f417..a1e3964fc81 100644 --- a/closed/get_j9_source.sh +++ b/closed/get_j9_source.sh @@ -1,7 +1,7 @@ #!/bin/bash # =========================================================================== -# (c) Copyright IBM Corp. 2017, 2018 All Rights Reserved +# (c) Copyright IBM Corp. 2017, 2019 All Rights Reserved # =========================================================================== # # This code is free software; you can redistribute it and/or modify it @@ -130,7 +130,7 @@ for i in "${!git_urls[@]}" ; do fi cd - > /dev/null else - git_clone_command="git clone --recursive -b ${branch} ${git_urls[$i]} ${i}" + git_clone_command="git clone -q --recursive -b ${branch} ${git_urls[$i]} ${i}" commands[$i]=$git_clone_command echo