From 95e4647899852b4de647598ad78569c83c6596eb Mon Sep 17 00:00:00 2001 From: Trevor Batley Date: Fri, 2 Jun 2023 20:58:52 +1000 Subject: [PATCH] added space before ] --- git-cvs2git.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/git-cvs2git.sh b/git-cvs2git.sh index 90e8ec8..84e0251 100755 --- a/git-cvs2git.sh +++ b/git-cvs2git.sh @@ -245,8 +245,8 @@ if [ "$RESPONSE" == "200" ]; then # If so, clone it (just want the README.md) if [ $DEBUG ] ; then echo "git clone $GITEAHOST/$ORGGITEA/$1.git" ; fi cd $GITFiles - git clone "$GITEAHOST/$ORGGITEA/$1.git" - if [[ -f $GITFILES/$1/README.md]] ; then + git clone "$GITEAHOST/$ORGGITEA/$1.git" $suppress + if [[ -f $GITFILES/$1/README.md ]] ; then # Move it and remember its new (temp) name READMECONTENTS=`mktemp` mv -f README.md "$READMECONTENTS"