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/12/20 10:47:15 UTC

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

Author: icing
Date: Mon Dec 20 10:47:15 2021
New Revision: 1896183

URL: http://svn.apache.org/viewvc?rev=1896183&view=rev
Log:
 * fixed missing ; in code that changes file name inside checksum files.


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=1896183&r1=1896182&r2=1896183&view=diff
==============================================================================
--- httpd/dev-tools/release/r3-push-release-tars.sh (original)
+++ httpd/dev-tools/release/r3-push-release-tars.sh Mon Dec 20 10:47:15 2021
@@ -88,7 +88,7 @@ if test "${VERSION}" != "${FULL_VERSION}
   done
   # fix the filenames in the hash files (PR65665)
   echo "fixing ${FULL_VERSION} filename to ${VERSION} in hash files"
-  for file in "${AO_DIST_RELEASE_PATH}/${PROJECT}-${VERSION}".tar.*.sha*  do
+  for file in "${AO_DIST_RELEASE_PATH}/${PROJECT}-${VERSION}".tar.*.sha*;  do
     perl -pe "s/${FULL_VERSION}/${VERSION}/" -i $file
   done
 fi