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

svn commit: r1909183 - /httpd/dev-tools/release/r4-stage-release.sh

Author: covener
Date: Sun Apr 16 16:09:08 2023
New Revision: 1909183

URL: http://svn.apache.org/viewvc?rev=1909183&view=rev
Log:
cleanup release, not dev


Modified:
    httpd/dev-tools/release/r4-stage-release.sh

Modified: httpd/dev-tools/release/r4-stage-release.sh
URL: http://svn.apache.org/viewvc/httpd/dev-tools/release/r4-stage-release.sh?rev=1909183&r1=1909182&r2=1909183&view=diff
==============================================================================
--- httpd/dev-tools/release/r4-stage-release.sh (original)
+++ httpd/dev-tools/release/r4-stage-release.sh Sun Apr 16 16:09:08 2023
@@ -117,12 +117,12 @@ svn rm --force "${AO_DIST_RELEASE_PATH}/
 touch "${AO_DIST_RELEASE_PATH}/CURRENT-IS-${VERSION}"
 svn add "${AO_DIST_RELEASE_PATH}/CURRENT-IS-${VERSION}" >/dev/null
 
-# we should only keep on release in our dist repository,
+# we should only keep one release in our dist repository,
 # remove the previous one if it exists
 prev_patch=`expr ${v_patch} - 1`
 PREV_VERSION="${v_major}.${v_minor}.${prev_patch}"
-for i in "${AO_DIST_DEV_PATH}/${PROJECT}-${PREV_VERSION}".tar.* \
-         "${AO_DIST_DEV_PATH}/CHANGES_${v_major}.${prev_patch}"; do
+for i in "${AO_DIST_RELEASE_PATH}/${PROJECT}-${PREV_VERSION}".tar.* \
+         "${AO_DIST_RELEASE_PATH}/CHANGES_${v_major}.${prev_patch}"; do
   test -f "$i" && svn rm "$i"
 done