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

Unified Diff: sdk/lib/_internal/pub/bin/pub.dart

Issue 24270004: Close stdout and stderr before exiting Pub. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Import fixes Created 7 years, 3 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 | sdk/lib/_internal/pub/lib/src/command.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/_internal/pub/bin/pub.dart
diff --git a/sdk/lib/_internal/pub/bin/pub.dart b/sdk/lib/_internal/pub/bin/pub.dart
index 1a3e16ce1733ea65cd2ccce97c8678fb9716723d..d972e63fe3e3b5e6f1faafd63ca05c47b554e6d8 100644
--- a/sdk/lib/_internal/pub/bin/pub.dart
+++ b/sdk/lib/_internal/pub/bin/pub.dart
@@ -26,7 +26,8 @@ void main() {
} on FormatException catch (e) {
log.error(e.message);
log.error('Run "pub help" to see available options.');
- exit(exit_codes.USAGE);
+ flushThenExit(exit_codes.USAGE);
+ return;
}
if (options['version']) {
@@ -46,7 +47,8 @@ void main() {
} else {
log.error('Could not find a command named "${options.rest[0]}".');
log.error('Run "pub help" to see available commands.');
- exit(exit_codes.USAGE);
+ flushThenExit(exit_codes.USAGE);
+ return;
}
return;
}
@@ -126,7 +128,7 @@ Future validatePlatform() {
return runProcess('ver', []).then((result) {
if (result.stdout.join('\n').contains('XP')) {
log.error('Sorry, but pub is not supported on Windows XP.');
- exit(exit_codes.USAGE);
+ return flushThenExit(exit_codes.USAGE);
}
});
});
« no previous file with comments | « no previous file | sdk/lib/_internal/pub/lib/src/command.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698