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 2020/04/17 16:23:39 UTC

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

Author: stsp
Date: Fri Apr 17 16:23:39 2020
New Revision: 1876670

URL: http://svn.apache.org/viewvc?rev=1876670&view=rev
Log:
* tools/buildbot/slaves/bb-openbsd/svnclean.sh: Do not fail at 'svn cleanup'
   step if no working copy exists yet.

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=1876670&r1=1876669&r2=1876670&view=diff
==============================================================================
--- subversion/trunk/tools/buildbot/slaves/bb-openbsd/svnclean.sh (original)
+++ subversion/trunk/tools/buildbot/slaves/bb-openbsd/svnclean.sh Fri Apr 17 16:23:39 2020
@@ -22,7 +22,7 @@
 set -e
 set -x
 
-svn cleanup ../build
+(test -d ../build/.svn && svn cleanup ../build)
 (test -h ../svn-trunk || ln -s build ../svn-trunk)
 for i in $(jot - 6 12); do
   (test -h ../svn-1.${i}.x || ln -s build ../svn-1.${i}.x)