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

svn commit: r1893181 - /httpd/dev-tools/github/apply_backport_pr.sh

Author: rpluem
Date: Thu Sep  9 15:00:16 2021
New Revision: 1893181

URL: http://svn.apache.org/viewvc?rev=1893181&view=rev
Log:
* Add some additional separators to make a clearer separation between various outputs

Modified:
    httpd/dev-tools/github/apply_backport_pr.sh

Modified: httpd/dev-tools/github/apply_backport_pr.sh
URL: http://svn.apache.org/viewvc/httpd/dev-tools/github/apply_backport_pr.sh?rev=1893181&r1=1893180&r2=1893181&view=diff
==============================================================================
--- httpd/dev-tools/github/apply_backport_pr.sh (original)
+++ httpd/dev-tools/github/apply_backport_pr.sh Thu Sep  9 15:00:16 2021
@@ -65,18 +65,23 @@ echo >> clog
 echo "Github: closes #${PR}" >> clog
 
 echo
+echo "--------------------------------------------------"
 cat clog
+echo "--------------------------------------------------"
 
 echo
 echo "Don't forget to adjust 'Reviewed by:' in the commit message with the"
 echo "information from the STATUS file"
 echo
+echo "--------------------------------------------------"
 
 make update-changes
 
 UNVERSIONED_FILES=`svn status . | egrep '^\?' | tr -s " " | cut -f2 -d " "`
 
 if [ -n "$UNVERSIONED_FILES" ] ; then
+    echo
+    echo "--------------------------------------------------"
     echo "The following files are not under version control:"
     echo
     echo $UNVERSIONED_FILES | tr ' ' '\n'