You are viewing a plain text version of this content. The canonical link for it is here.
Posted to general@attic.apache.org by se...@apache.org on 2021/06/29 15:49:09 UTC

svn commit: r1891144 - /attic/site/infrajiratext.py

Author: sebb
Date: Tue Jun 29 15:49:09 2021
New Revision: 1891144

URL: http://svn.apache.org/viewvc?rev=1891144&view=rev
Log:
Need redirects, not deletion

Modified:
    attic/site/infrajiratext.py

Modified: attic/site/infrajiratext.py
URL: http://svn.apache.org/viewvc/attic/site/infrajiratext.py?rev=1891144&r1=1891143&r2=1891144&view=diff
==============================================================================
--- attic/site/infrajiratext.py (original)
+++ attic/site/infrajiratext.py Tue Jun 29 15:49:09 2021
@@ -65,12 +65,13 @@ def check_dist(pid):
     dev = svnfiles(DEV + pid)
     rel = svnfiles(REL + pid)
     if dev > 0 or rel > 0:
-        print("Remove the distribution SVN directories:")
         if dev > 0:
+            print("Remove the distribution SVN developer directory:")
             print('- ' + DEV + pid)
         if rel > 0:
+            print("Remove the distribution SVN release directory contents, and")
+            print("set up redirection to https://attic.apache.org/projects/%s.html" % pid)
             print('- ' + REL + pid)
-#             print("Set up redirection to https://attic.apache.org/projects/%s.html" % pid)
         print()
 
 # Whimsy json may be stale, so use ldapsearch for now