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/22 06:38:20 UTC

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

Author: jailletc36
Date: Thu Apr 22 06:38:20 2021
New Revision: 1889089

URL: http://svn.apache.org/viewvc?rev=1889089&view=rev
Log:
No need to manually create this directory, they are created by the
'svn checkout' a few lines below (and mkdir "$tag_dir" was missing anyway)

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=1889089&r1=1889088&r2=1889089&view=diff
==============================================================================
--- httpd/site/trunk/tools/tag.sh (original)
+++ httpd/site/trunk/tools/tag.sh Thu Apr 22 06:38:20 2021
@@ -72,8 +72,6 @@ set -u
 #Ensure the directory exists and is empty by nuking it first
 rm -rf "$dir"
 mkdir -p "$dir"
-mkdir "$src_dir"
-mkdir "$dist_dir"
 
 if test "$branch" = "trunk";then
   SVN_BRANCH="$SVN_ROOT/httpd/trunk"