Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(472)

Unified Diff: visual_studio/NativeClientVSAddIn/InstallerResources/install.py

Issue 19990004: [VS Addin] Don't fail installation if win32 platform is missing. (Closed) Base URL: https://nativeclient-sdk.googlecode.com/svn/trunk/src
Patch Set: Created 7 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « visual_studio/NativeClientVSAddIn/InstallerResources/create_ppapi_platform.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: visual_studio/NativeClientVSAddIn/InstallerResources/install.py
diff --git a/visual_studio/NativeClientVSAddIn/InstallerResources/install.py b/visual_studio/NativeClientVSAddIn/InstallerResources/install.py
index 649e823a967bd4eba046bb9f38f412cff7bff9f2..e67c4261b67a89333dbc79bd012c98cd7bc1924a 100644
--- a/visual_studio/NativeClientVSAddIn/InstallerResources/install.py
+++ b/visual_studio/NativeClientVSAddIn/InstallerResources/install.py
@@ -316,7 +316,7 @@ if __name__ == '__main__':
rtn = 1
try:
rtn = main()
- except InstallError as e:
+ except (create_ppapi_platform.Error, InstallError) as e:
print
print e
except shutil.Error as e:
« no previous file with comments | « visual_studio/NativeClientVSAddIn/InstallerResources/create_ppapi_platform.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698