From 2cc0ebcfd7c7c2bd8dbd958939ec555113c0ae11 Mon Sep 17 00:00:00 2001 From: "bhearsum%mozilla.com" Date: Mon, 24 Nov 2008 13:32:22 +0000 Subject: [PATCH] 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 --- mozilla/tools/buildbotcustom/process/factory.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mozilla/tools/buildbotcustom/process/factory.py b/mozilla/tools/buildbotcustom/process/factory.py index 4adfafbebd3..47f27afd4d0 100644 --- a/mozilla/tools/buildbotcustom/process/factory.py +++ b/mozilla/tools/buildbotcustom/process/factory.py @@ -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,