From c8ae7f8143e5c8292173601ecae4bf792a83c73a Mon Sep 17 00:00:00 2001 From: Daniel Kraus Date: Thu, 5 Feb 2015 20:47:24 +0100 Subject: [PATCH] Modify release script to not commit stuff. --- release.sh | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/release.sh b/release.sh index c852b76..e975e2f 100755 --- a/release.sh +++ b/release.sh @@ -16,13 +16,13 @@ FILENAME="release/LinkTitles-$1.tar.gz" # root path "LinktTitles". tar cvzf $FILENAME gpl-*.txt README.md NEWS *.php --exclude '*~' --transform 's,^,LinkTitles/,' -if [[ $? -eq 0 ]]; then - # Add the tarball to the repository, commit it, then tag the commit and push to origin. - git add $FILENAME - git commit -m --amend - git tag -a $1 -m "Version $1." - git push - git push --tags -else - echo "tar had errors, did not push." -fi +# if [[ $? -eq 0 ]]; then +# # Add the tarball to the repository, commit it, then tag the commit and push to origin. +# git add $FILENAME +# git commit -m --amend +# git tag -a $1 -m "Version $1." +# git push +# git push --tags +# else +# echo "tar had errors, did not push." +# fi