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

Unified Diff: sdk/lib/_internal/pub/lib/src/global_packages.dart

Issue 601973002: Fix some pub analyzer warnings. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 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
Index: sdk/lib/_internal/pub/lib/src/global_packages.dart
diff --git a/sdk/lib/_internal/pub/lib/src/global_packages.dart b/sdk/lib/_internal/pub/lib/src/global_packages.dart
index 93acb294bf7bcd2056016827d5789dd515079a37..de1cf148564c29ead9dd0c5d0ba00126421a0a85 100644
--- a/sdk/lib/_internal/pub/lib/src/global_packages.dart
+++ b/sdk/lib/_internal/pub/lib/src/global_packages.dart
@@ -624,7 +624,7 @@ $invocation "\$@"
if (Platform.operatingSystem == "windows") {
// See if the shell can find one of the binstubs.
// "\q" means return exit code 0 if found or 1 if not.
- var result = Process.runSync("where", r"\q", [installed.first]);
+ var result = Process.runSync("where", [r"\q", installed.first]);
if (result.exitCode == 0) return;
var binDir = _binStubDir;

Powered by Google App Engine
This is Rietveld 408576698