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

Unified Diff: sdk/lib/_internal/pub/lib/src/command.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 | « sdk/lib/_internal/pub/bin/pub.dart ('k') | sdk/lib/_internal/pub/lib/src/command/cache.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/_internal/pub/lib/src/command.dart
diff --git a/sdk/lib/_internal/pub/lib/src/command.dart b/sdk/lib/_internal/pub/lib/src/command.dart
index 9689cc6e9e81e70be0933e63f025bfd71ab70f01..2375bfed28fdd3d50733cdef5293fed88130798e 100644
--- a/sdk/lib/_internal/pub/lib/src/command.dart
+++ b/sdk/lib/_internal/pub/lib/src/command.dart
@@ -24,6 +24,7 @@ import 'command/version.dart';
import 'entrypoint.dart';
import 'exit_codes.dart' as exit_codes;
import 'http.dart';
+import 'io.dart';
import 'log.dart' as log;
import 'package.dart';
import 'system_cache.dart';
@@ -113,7 +114,7 @@ and include the results in a bug report on http://dartbug.com/new.
""");
}
- exit(_chooseExitCode(error));
+ return flushThenExit(_chooseExitCode(error));
}
new Future.sync(() {
@@ -137,11 +138,11 @@ and include the results in a bug report on http://dartbug.com/new.
'"name" field (e.g. "name: ${path.basename(path.current)}").');
}
- handleError(e);
+ return handleError(e);
}).then((_) {
// Explicitly exit on success to ensure that any dangling dart:io handles
// don't cause the process to never terminate.
- exit(0);
+ return flushThenExit(0);
});
}
« no previous file with comments | « sdk/lib/_internal/pub/bin/pub.dart ('k') | sdk/lib/_internal/pub/lib/src/command/cache.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698