You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ja...@apache.org on 2021/04/21 21:12:12 UTC

svn commit: r1889076 - /httpd/site/trunk/tools/tag.sh

Author: jailletc36
Date: Wed Apr 21 21:12:12 2021
New Revision: 1889076

URL: http://svn.apache.org/viewvc?rev=1889076&view=rev
Log:
Fix location of NOTICE and common.xsl for copyright year update.
Both are in "$src_dir"

Modified:
    httpd/site/trunk/tools/tag.sh

Modified: httpd/site/trunk/tools/tag.sh
URL: http://svn.apache.org/viewvc/httpd/site/trunk/tools/tag.sh?rev=1889076&r1=1889075&r2=1889076&view=diff
==============================================================================
--- httpd/site/trunk/tools/tag.sh (original)
+++ httpd/site/trunk/tools/tag.sh Wed Apr 21 21:12:12 2021
@@ -126,7 +126,7 @@ fi
 
 
 #    Ensure the Copyright date reflects the current year in the NOTICE and docs/manual/style/xsl/common.xsl files.
-perl -pi -e "s/Copyright \d+ The Apache Software Foundation./Copyright $current_year The Apache Software Foundation./g" NOTICE docs/manual/style/xsl/common.xsl
+perl -pi -e "s/Copyright \d+ The Apache Software Foundation./Copyright $current_year The Apache Software Foundation./g" $src_dir/NOTICE $src_dir/docs/manual/style/xsl/common.xsl
 
 
 #    Execute ./build.sh all convmap to ensure that the documentation transformations are up to date.
@@ -211,12 +211,12 @@ perl -pi -e '
 
 
 #    Create an official X.Y.Z tag based on the candidate tree.
-svn copy -m "Tag HEAD of $branch as $version" "$SVN_BRANCH" "$SVN_ROOT/httpd/tags/$version"
+###svn copy -m "Tag HEAD of $branch as $version" "$SVN_BRANCH" "$SVN_ROOT/httpd/tags/$version"
 
 
 #    Commit our bumps and updates now that tag is done
 cd "$src_dir"
-svn commit -m "Post $version tag updates"
+###svn commit -m "Post $version tag updates"
 
 #Outside the scope of this script...
 #    Run the svn.apache.org/repos/asf/httpd/site/trunk/tools/release.sh script.