Index: sitescripts/extensions/bin/createNightlies.py |
=================================================================== |
--- a/sitescripts/extensions/bin/createNightlies.py |
+++ b/sitescripts/extensions/bin/createNightlies.py |
@@ -100,17 +100,17 @@ class NightlyBuild(object): |
return subprocess.check_output(command).strip() |
def getCurrentBuild(self): |
""" |
calculates the (typically numerical) build ID for the current build |
""" |
command = ['hg', 'id', '-n', '--config', 'defaults.id=', self.tempdir] |
build = subprocess.check_output(command).strip() |
- if self.config.type == 'gecko': |
+ if self.config.type in {'gecko', 'gecko-webext'}: |
build += '-beta' |
return build |
def getChanges(self): |
""" |
retrieve changes between the current and previous ("first") revision |
""" |
command = [ |