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

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

Issue 11098022: Fix reporting or errors addin building and testing (Closed) Base URL: http://nativeclient-sdk.googlecode.com/svn/trunk/src
Patch Set: Created 8 years, 2 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 | « no previous file | visual_studio/NativeClientVSAddIn/buildbot_run.py » ('j') | 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 d5f93195ffea07324e77e042ff06a2a3de6df84f..e6cd0e8c3765442a4d81fedf39397b0a905fd0c5 100644
--- a/visual_studio/NativeClientVSAddIn/InstallerResources/install.py
+++ b/visual_studio/NativeClientVSAddIn/InstallerResources/install.py
@@ -215,9 +215,12 @@ def main():
else:
print "\nInstallation complete!\n"
+ return 0
+
if __name__ == '__main__':
+ rtn = 1
try:
- main()
+ rtn = main()
except InstallError as e:
print
print e
@@ -230,3 +233,4 @@ if __name__ == '__main__':
print "processes are closed."
else:
raise
+ sys.exit(rtn)
« no previous file with comments | « no previous file | visual_studio/NativeClientVSAddIn/buildbot_run.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698