Bug 1393509 - Fix artifact builds on windows with |mach try fuzzy|, r=dustin

MozReview-Commit-ID: Fo3WzFEdLUF

--HG--
extra : rebase_source : f52c2e19bdad6e28ded106cfcdc64f3464281d54
This commit is contained in:
Andrew Halberstadt 2017-08-24 12:30:40 -04:00
parent 4eb476eee2
commit f3a31869bb

View File

@ -40,7 +40,7 @@ class Artifact(Template):
def context(self, artifact, no_artifact, **kwargs):
if artifact:
return {'enabled': 1}
return {'enabled': '1'}
if no_artifact:
return
@ -49,7 +49,7 @@ class Artifact(Template):
try:
if build.substs.get("MOZ_ARTIFACT_BUILDS"):
print("Artifact builds enabled, pass --no-artifact to disable")
return {'enabled': 1}
return {'enabled': '1'}
except BuildEnvironmentNotFoundException:
pass