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

Unified Diff: build_release.py

Issue 10969028: Removed outdated InnoSetup installer and renamed WixInstaller directory into the canonical installer (Closed)
Patch Set: Created June 20, 2013, 6:47 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
« no previous file with comments | « InnoSetup/License.txt ('k') | installer/Makefile » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build_release.py
===================================================================
--- a/build_release.py
+++ b/build_release.py
@@ -64,11 +64,11 @@ for arch in ("ia32", "x64"):
], env=buildParams)
plugin = {"ia32": "AdblockPlus.dll", "x64": "AdblockPlusx64.dll"}[arch]
sign(os.path.join(basedir, "build", arch, "Release Test", plugin),
os.path.join(basedir, "build", arch, "Release Test", "AdblockPlusEngine.exe"))
installerParams = os.environ.copy()
installerParams["VERSION"] = version
-subprocess.call(["nmake", "/A"], env=installerParams, cwd=os.path.join(basedir, "WixInstaller"))
+subprocess.call(["nmake", "/A"], env=installerParams, cwd=os.path.join(basedir, "installer"))
sign(os.path.join(basedir, "build", "ia32", "adblockplusie-%s-en-us-ia32.msi" % version),
os.path.join(basedir, "build", "x64", "adblockplusie-%s-en-us-x64.msi" % version))
« no previous file with comments | « InnoSetup/License.txt ('k') | installer/Makefile » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld