You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by st...@apache.org on 2021/01/28 22:17:44 UTC

svn commit: r1886000 - /subversion/trunk/tools/buildbot/slaves/bb-openbsd/svnclean.sh

Author: stsp
Date: Thu Jan 28 22:17:44 2021
New Revision: 1886000

URL: http://svn.apache.org/viewvc?rev=1886000&view=rev
Log:
* tools/buildbot/slaves/bb-openbsd/svnclean.sh: Remove generated HTTPD config
  files if Makefile.svn has changed. Should prevent this bot from staying red
  when these files need to be updated in order to keep ra_serf tests passing.

Modified:
    subversion/trunk/tools/buildbot/slaves/bb-openbsd/svnclean.sh

Modified: subversion/trunk/tools/buildbot/slaves/bb-openbsd/svnclean.sh
URL: http://svn.apache.org/viewvc/subversion/trunk/tools/buildbot/slaves/bb-openbsd/svnclean.sh?rev=1886000&r1=1885999&r2=1886000&view=diff
==============================================================================
--- subversion/trunk/tools/buildbot/slaves/bb-openbsd/svnclean.sh (original)
+++ subversion/trunk/tools/buildbot/slaves/bb-openbsd/svnclean.sh Thu Jan 28 22:17:44 2021
@@ -40,6 +40,11 @@ if [ -d .svn ]; then
   branch="${url##*/}"
   if [ "$lastchangedrev" != "$newlastchangedrev" ]; then
     (cd .. && gmake BRANCH="$branch" reset clean)
+    rm -f ../prefix/httpd/conf/httpd-svn-check-*.conf
+    rm -f ../prefix/httpd/conf/httpd-svn-proxy-*.conf
+    rm -f ../prefix/httpd/conf/httpd-svn-check-users
+    rm -f ../prefix/httpd/conf/httpd-svn-check-groups
+    rm -f ../prefix/httpd/conf/dontdothat
   else
     (cd .. && gmake BRANCH="$branch" svn-reset svn-bindings-reset svn-clean)
   fi