Skip to content
This repository has been archived by the owner on Jun 11, 2019. It is now read-only.

Commit

Permalink
update logic to accomodate product 'thunderbird-test'. Bug 747025 - B…
Browse files Browse the repository at this point in the history
…uild Thunderbird in parallel on new systems. r=nthomas
  • Loading branch information
jhopkinsmoz committed Apr 20, 2012
1 parent fbf8b42 commit 15ea387
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion common.py
Expand Up @@ -33,7 +33,7 @@ def genBuildUID():

def reallyShort(name, product=None):
prefix = ''
if product == 'thunderbird':
if product != None and 'thunderbird' in product:
prefix = 'tb-'

mappings = {
Expand Down
2 changes: 1 addition & 1 deletion process/factory.py
Expand Up @@ -1362,7 +1362,7 @@ def addLeakTestStepsCommon(self, baseUrl, leakEnv, graphAndUpload):
))

logdir = "%s/_leaktest" % self.mozillaObjdir
if self.stageProduct == 'thunderbird':
if 'thunderbird' in self.stageProduct:
logdir = self.objdir

self.addStep(ShellCommand(
Expand Down

0 comments on commit 15ea387

Please sign in to comment.