Fix project dirs path

ProjectDirs::from("miri", "miri", "miri")

would get you `miri\miri` on Windows and `miri.miri.miri` on macOS.

I'm assuming here that your intention was to have only a `miri` directory on every OS.
This commit is contained in:
soc 2019-06-14 23:17:27 +02:00 committed by Simon Ochsenreither
parent 4736692e67
commit a561f949ad
2 changed files with 2 additions and 2 deletions

View File

@ -36,7 +36,7 @@ build_script:
- cargo install --all-features --force --path . --locked --offline
# Get ourselves a MIR-full libstd, and use it henceforth
- cargo miri setup
- set MIRI_SYSROOT=%USERPROFILE%\AppData\Local\miri\miri\cache\HOST
- set MIRI_SYSROOT=%USERPROFILE%\AppData\Local\miri\cache\HOST
test_script:
# Test miri

View File

@ -248,7 +248,7 @@ fn setup(ask_user: bool) {
}
// Next, we need our own libstd. We will do this work in whatever is a good cache dir for this platform.
let dirs = directories::ProjectDirs::from("miri", "miri", "miri").unwrap();
let dirs = directories::ProjectDirs::from("", "", "miri").unwrap();
let dir = dirs.cache_dir();
if !dir.exists() {
fs::create_dir_all(&dir).unwrap();