Index: build_release.py |
=================================================================== |
--- a/build_release.py |
+++ b/build_release.py |
@@ -48,6 +48,9 @@ |
installerParams = os.environ.copy() |
installerParams["VERSION"] = version |
-subprocess.check_call(["nmake", "/A"], env=installerParams, cwd=os.path.join(basedir, "installer")) |
+try: |
+ subprocess.check_call(["nmake", "/A"], env=installerParams, cwd=os.path.join(basedir, "installer")) |
+except subprocess.CalledProcessError: |
+ print("An error occurred during nmake, continuing anyway") |
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)) |