From e19bd34d0cbea0a979f9b2b30dd64b8fef47ff45 Mon Sep 17 00:00:00 2001 From: Brian Read Date: Fri, 15 Mar 2024 10:50:35 +0100 Subject: [PATCH] revert f8e6992ceaaf3ff52948a53a932581457a43ad8a revert Add in change to tar file name --- git-post-create-repo.sh | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/git-post-create-repo.sh b/git-post-create-repo.sh index e5608e2..955523f 100755 --- a/git-post-create-repo.sh +++ b/git-post-create-repo.sh @@ -67,8 +67,6 @@ echo `pwd` # Rename the spec file accordingly to $1 mv change-this-to-the-package-name.spec $1.spec -# and the tar file -mv change-this-to-the-package-name-1.0.tar.gz $1-1.0.tar.gz # Set the date in the spec file changelog to today dateH=`date "+%a %b %d %Y"` @@ -76,7 +74,7 @@ sed -i "s/Day MMMM DD YYYY/$dateH/" $1.spec #Now write them all back to the repo -git add --all +git add -A git status git commit -m "post create changes" git push