The buildbot shouldn't stop on a failed svn cleanup, as that will happen if there's no working copy in place, not only on unsuccessful cleanup.

- Legacy-Id: 9721
This commit is contained in:
buildbot 2015-07-15 10:34:00 +00:00
parent 9ea5e084d2
commit 56ca34090c

View file

@ -284,7 +284,7 @@ factory = BuildFactory()
factory.addStep(ShellCommand( factory.addStep(ShellCommand(
descriptionDone="svn cleanup", descriptionDone="svn cleanup",
workdir=Interpolate('build/%(src::branch)s'), workdir=Interpolate('build/%(src::branch)s'),
haltOnFailure=True, haltOnFailure=False,
command=["svn", "cleanup"], command=["svn", "cleanup"],
)) ))
factory.addStep(SVN( factory.addStep(SVN(