Mailing List Archive

svn commit: r1916797 - /httpd/dev-tools/release/r0-make-candidate.sh
Author: jorton
Date: Thu Apr 4 09:06:26 2024
New Revision: 1916797

URL: http://svn.apache.org/viewvc?rev=1916797&view=rev
Log:
If changes-entries/ exists but is empty, remove the directory
(no need to have it in the tarball)

Modified:
httpd/dev-tools/release/r0-make-candidate.sh

Modified: httpd/dev-tools/release/r0-make-candidate.sh
URL: http://svn.apache.org/viewvc/httpd/dev-tools/release/r0-make-candidate.sh?rev=1916797&r1=1916796&r2=1916797&view=diff
==============================================================================
--- httpd/dev-tools/release/r0-make-candidate.sh (original)
+++ httpd/dev-tools/release/r0-make-candidate.sh Thu Apr 4 09:06:26 2024
@@ -82,6 +82,9 @@ if test -d changes-entries; then
if ! ask_yes_no "Do you want to continue anyway?"; then
exit 1
fi
+ else
+ # Remove the empty directory
+ rmdir changes-entries
fi
fi