bug 464093: fix up paths to nightly dirs in pre-build cleanup step. r=me, patch=nrthomas

git-svn-id: svn://10.0.0.236/trunk@255185 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
bhearsum%mozilla.com 2008-11-24 13:32:22 +00:00
parent 197dd37d50
commit 2cc0ebcfd7

View File

@ -217,7 +217,7 @@ class MercurialBuildFactory(BuildFactory):
env=self.env
)
self.addStep(ShellCommand,
command=['bash', '-c', 'rm -rf ../*-nightly/build'],
command=['bash', '-c', 'rm -rf ../../*-nightly/build'],
env = self.env,
description=['cleaning', 'old', 'builds'],
descriptionDone=['clean', 'old', 'builds'],
@ -612,7 +612,7 @@ class RepackFactory(BuildFactory):
haltOnFailure=True
)
self.addStep(ShellCommand,
command=['bash', '-c', 'rm -rf ../*-nightly/build'],
command=['bash', '-c', 'rm -rf ../../*-nightly/build'],
description=['cleaning', 'old', 'builds'],
descriptionDone=['clean', 'old', 'builds'],
warnOnFailure=True,
@ -1397,7 +1397,7 @@ class UnittestBuildFactory(BuildFactory):
)
self.addStep(ShellCommand,
command=['rm', '-rf', '../*-nightly/build'],
command=['rm', '-rf', '../../*-nightly/build'],
description=['cleaning', 'old', 'builds'],
descriptionDone=['clean', 'old', 'builds'],
warnOnFailure=True,