From 7c125e18d11dfa732f4c4d5ca30b63c41f1925ad Mon Sep 17 00:00:00 2001 From: Trevor Batley Date: Tue, 6 Jun 2023 19:39:40 +1000 Subject: [PATCH] QUIET a different way --- git-get-repo-and-build.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/git-get-repo-and-build.sh b/git-get-repo-and-build.sh index 10fae3c..4fae496 100755 --- a/git-get-repo-and-build.sh +++ b/git-get-repo-and-build.sh @@ -80,7 +80,7 @@ if [ $DEBUG ] ; then echo $GITFiles ; fi if [ ! -e $GITFiles/common ]; then #Get it cd $GITFiles - git clone $QUIET "${smegit_COMMONREPO}" + git clone "${smegit_COMMONREPO}" $QUIET if [ ! -e $GITFiles/common ]; then echo "ERROR*******No Common Repo found - package $REPO_NAME" exit 1 @@ -88,7 +88,7 @@ if [ ! -e $GITFiles/common ]; then else # Just refresh it cd $GITFiles/common - git $QUIET pull + git pull fi # Now make sure that the make-archive is executible @@ -129,7 +129,7 @@ if [[ -d $REPO_NAME ]] ; then rm -rf "$REPO_NAME" fi cd $GITFiles -git $QUIET clone "$REPOURL" +git clone "$REPOURL" $QUIET cd $GITFiles