Skip to content

Commit

Permalink
inform the user when nand where we are creating a cache dir
Browse files Browse the repository at this point in the history
  • Loading branch information
RalfJung committed Nov 27, 2018
1 parent db06aad commit 444e2f0
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/bin/cargo-miri.rs
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,7 @@ fn setup(ask_user: bool) {
let dirs = directories::ProjectDirs::from("miri", "miri", "miri").unwrap();
let dir = dirs.cache_dir();
if !dir.exists() {
println!("Creating `{}` and using it for miri's build of libstd", dir.display());
fs::create_dir_all(&dir).unwrap();
}
// The interesting bit: Xargo.toml
Expand Down

0 comments on commit 444e2f0

Please sign in to comment.