Index: sitescripts/extensions/bin/createNightlies.py |
=================================================================== |
--- a/sitescripts/extensions/bin/createNightlies.py |
+++ b/sitescripts/extensions/bin/createNightlies.py |
@@ -365,16 +365,20 @@ def main(): |
nightlyConfigFile = get_config().get('extensions', 'nightliesData') |
if os.path.exists(nightlyConfigFile): |
nightlyConfig.read(nightlyConfigFile) |
# build all extensions specified in the configuration file |
# and generate changelogs and documentations for each: |
data = None |
for repo in Configuration.getRepositoryConfigurations(nightlyConfig): |
+ # No Opera build automation yet |
+ if repo.type == 'opera': |
+ continue |
+ |
build = None |
try: |
build = NightlyBuild(repo) |
if build.hasChanges(): |
build.run() |
except Exception, ex: |
print >>sys.stderr, "The build for %s failed:" % repo |
traceback.print_exc() |