You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ic...@apache.org on 2021/09/15 08:17:16 UTC

svn commit: r1893354 - /httpd/dev-tools/release/r3-push-release-tars.sh

Author: icing
Date: Wed Sep 15 08:17:16 2021
New Revision: 1893354

URL: http://svn.apache.org/viewvc?rev=1893354&view=rev
Log:
some ascii art to make svn ouput better readable

Modified:
    httpd/dev-tools/release/r3-push-release-tars.sh

Modified: httpd/dev-tools/release/r3-push-release-tars.sh
URL: http://svn.apache.org/viewvc/httpd/dev-tools/release/r3-push-release-tars.sh?rev=1893354&r1=1893353&r2=1893354&view=diff
==============================================================================
--- httpd/dev-tools/release/r3-push-release-tars.sh (original)
+++ httpd/dev-tools/release/r3-push-release-tars.sh Wed Sep 15 08:17:16 2021
@@ -99,7 +99,9 @@ cp "${AO_DIST_DEV_PATH}/CHANGES_${v_majo
 svn rm --force "${AO_DIST_DEV_PATH}/CHANGES_${v_major}.${v_minor}"
 #Note we don't delete the Announce files since it is our template
 
-echo "changes ready for commit in ${AO_DIST_PATH}"
+echo ""
+echo "changes ready for commit in: ${AO_DIST_PATH}"
+echo "----------------------------"
 svn stat "${AO_DIST_PATH}"
 if ask_yes_no "Do you want to commit these?"; then
   svn commit -m "Add release $PROJECT-$VERSION from voted $FULL_VERSION" "${AO_DIST_PATH}"
@@ -108,6 +110,7 @@ else
 fi
 
 # As a last step, move the candidate tag to the release tag
-svn mv "$SVN_BASE/$SVN_DEST" "$SVN_BASE/$SVN_RELEASE"
+svn mv -m "release $VERSION from voted $FULL_VERSION" \
+  "$SVN_BASE/$SVN_DEST" "$SVN_BASE/$SVN_RELEASE"
 
-save_version
\ No newline at end of file
+save_version