Avoid weird paths on Windows (#4612)

automerge
This commit is contained in:
Michael Vines 2019-06-08 17:23:35 -07:00 committed by Grimes
parent a357d08524
commit 9f46b2a6ce
1 changed files with 1 additions and 1 deletions

View File

@ -271,7 +271,7 @@ fn check_env_path_for_bin_dir(config: &Config) {
if !found {
println!(
"\nPlease update your PATH environment variable to include the solana programs:\n PATH=\"{}:$PATH\"\n",
bin_dir.to_str().unwrap()
config.active_release_bin_dir().to_str().unwrap()
);
}
}