You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by dr...@apache.org on 2018/03/10 02:31:19 UTC

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

Author: druggeri
Date: Sat Mar 10 02:31:19 2018
New Revision: 1826388

URL: http://svn.apache.org/viewvc?rev=1826388&view=rev
Log:
Annoying typo...

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=1826388&r1=1826387&r2=1826388&view=diff
==============================================================================
--- httpd/site/trunk/tools/tag.sh (original)
+++ httpd/site/trunk/tools/tag.sh Sat Mar 10 02:31:19 2018
@@ -185,7 +185,7 @@ sed -i "/coding: utf-8/a Changes with Ap
 perl -pi -e '
   if(/^(\s+)('$cur_version'\s+):/){
     $size = length $2;
-    $newline = sprintf("${1}%-${size}s", "'$next_version'") . ": In development\n";
+    $newline1 = sprintf("${1}%-${size}s", "'$next_version'") . ": In development\n";
     $newline2 = sprintf("${1}%-${size}s", "'$cur_version'") . ": Tagged on '"$date_string"'\n";
     $_="${newline1}${newline2}";
   }