diff --git a/lib/src/global_packages.dart b/lib/src/global_packages.dart index de1cf148564c29ead9dd0c5d0ba00126421a0a85..0f87dc0fa0fb226ddb2d0595d11616e0a166dc2c 100644 --- a/lib/src/global_packages.dart +++ b/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 = runProcessSync("where", [r"\q", installed.first]); if (result.exitCode == 0) return; var binDir = _binStubDir; @@ -641,7 +641,7 @@ $invocation "\$@" 'A web search for "configure windows path" will show you how.'); } else { // See if the shell can find one of the binstubs. - var result = Process.runSync("which", [installed.first]); + var result = runProcessSync("which", [installed.first]); if (result.exitCode == 0) return; var binDir = _binStubDir; @@ -656,7 +656,8 @@ $invocation "\$@" "You can fix that by adding this to your shell's config file " "(.bashrc, .bash_profile, etc.):\n" "\n" - "\n${log.bold('export PATH="\$PATH":"$binDir"')}\n"); + " ${log.bold('export PATH="\$PATH":"$binDir"')}\n" + "\n"); } } } diff --git a/test/global/binstubs/warns_if_not_on_path.dart b/test/global/binstubs/warns_if_not_on_path_test.dart similarity index 89% rename from test/global/binstubs/warns_if_not_on_path.dart rename to test/global/binstubs/warns_if_not_on_path_test.dart index 8ea5d2e347dd8e104ff46378fcf95d62104494c3..ec3fedb56f32f4b6048cb6445f826ccf00a1a151 100644 --- a/test/global/binstubs/warns_if_not_on_path.dart +++ b/test/global/binstubs/warns_if_not_on_path_test.dart @@ -13,7 +13,7 @@ main() { servePackages((builder) { builder.serve("foo", "1.0.0", pubspec: { "executables": { - "script": null + "some-dart-script": "script" } }, contents: [ d.dir("bin", [ @@ -23,6 +23,6 @@ main() { }); schedulePub(args: ["global", "activate", "foo"], - output: contains("is not on your path")); + error: contains("is not on your path")); }); }