Adding description to the RemoveDirectory step
This commit is contained in:
parent
409f91e6ac
commit
0174f62cba
1 changed files with 3 additions and 1 deletions
|
@ -352,7 +352,9 @@ class BuildAndTestGDBFactory (factory.BuildFactory):
|
||||||
def __init__ (self, architecture_triplet = []):
|
def __init__ (self, architecture_triplet = []):
|
||||||
factory.BuildFactory.__init__ (self)
|
factory.BuildFactory.__init__ (self)
|
||||||
self.addStep (RemoveDirectory (dir = WithProperties ("%s/build",
|
self.addStep (RemoveDirectory (dir = WithProperties ("%s/build",
|
||||||
'builddir')))
|
'builddir'),
|
||||||
|
description = "removing old build dir",
|
||||||
|
descriptionDone = "removed old build dir"))
|
||||||
# self.addStep (DeleteGDBBuildDir ())
|
# self.addStep (DeleteGDBBuildDir ())
|
||||||
# Unfortunately we need to have this random wait, otherwise
|
# Unfortunately we need to have this random wait, otherwise
|
||||||
# git fetch won't work
|
# git fetch won't work
|
||||||
|
|
Loading…
Reference in a new issue