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