Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: releaseAutomationGecko.py

Issue 8627097: Moved Chrome extension scripts to buildtools repository (Closed)
Patch Set: Added build.py gettranslations support for Chrome Created Oct. 22, 2012, 11:25 a.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: releaseAutomationGecko.py
===================================================================
rename from releaseAutomation.py
rename to releaseAutomationGecko.py
--- a/releaseAutomation.py
+++ b/releaseAutomationGecko.py
@@ -1,17 +1,17 @@
# coding: utf-8
# This Source Code is subject to the terms of the Mozilla Public License
# version 2.0 (the "License"). You can obtain a copy of the License at
# http://mozilla.org/MPL/2.0/.
import os, re, subprocess, tarfile
from StringIO import StringIO
-import buildtools.packager as packager
+import buildtools.packagerGecko as packager
def run(baseDir, version, keyFile, downloadsRepo, buildtoolsRepo):
# Replace version number in metadata file "manually", ConfigParser will mess
# up the order of lines.
handle = open(packager.getMetadataPath(baseDir), 'rb')
rawMetadata = handle.read()
handle.close()
versionRegExp = re.compile(r'^(\s*version\s*=\s*).*', re.I | re.M)
« packagerChrome.py ('K') | « publicSuffixListUpdater.py ('k') | releaseAutomationKMeleon.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld