From 040abb21e02c96bf4ec5e9008699a312d07274d6 Mon Sep 17 00:00:00 2001 From: Trevor Batley Date: Fri, 2 Jun 2023 21:28:05 +1000 Subject: [PATCH] remove suppress from git clone --- git-cvs2git.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/git-cvs2git.sh b/git-cvs2git.sh index 60ef6f7..a5f1844 100755 --- a/git-cvs2git.sh +++ b/git-cvs2git.sh @@ -243,9 +243,9 @@ RESPONSE=$(curl $checkSSL $curlsilent -o /dev/null -w "%{http_code}" "$GITEAHOST if [ "$RESPONSE" == "200" ]; then if [ $DEBUG ] ; then echo "************Repository for $1 already exists!" ; fi # If so, clone it (just want the README.md) - if [ $DEBUG ] ; then echo "git clone $GITEAHOST/$ORGGITEA/$1.git $suppress" ; fi + if [ $DEBUG ] ; then echo "git clone $GITEAHOST/$ORGGITEA/$1.git" ; fi cd $GITFiles - git clone "$GITEAHOST/$ORGGITEA/$1.git" "$suppress" + git clone "$GITEAHOST/$ORGGITEA/$1.git" if [[ -f $GITFILES/$1/README.md ]] ; then # Move it and remember its new (temp) name READMECONTENTS=`mktemp` @@ -320,8 +320,8 @@ fi # Pull in the auto created or updated files cd $GITFiles -#GIT_SSL_NO_VERIFY=true git clone "$GITEAHOST/$ORGGITEA/$1.git $suppress" -git clone "$GITEAHOST/$ORGGITEA/$1.git" "$suppress" +#GIT_SSL_NO_VERIFY=true git clone "$GITEAHOST/$ORGGITEA/$1.git" +git clone "$GITEAHOST/$ORGGITEA/$1.git" if [ ! -d $GITFiles/$1 ] ; then echo "ERROR*******Unable to access the new repo directory for $HTTP_URL $GITFiles/$1" @@ -566,7 +566,7 @@ fi if [ ! -e $GITFiles/common ]; then #Get it cd $GITFiles - git clone "${smegit_COMMONREPO}" "$suppress" + git clone "${smegit_COMMONREPO}" if [ ! -e $GITFiles/common ]; then echo "ERROR*******No Common Repo found - package $1" exit 1