Skip to content

Commit 17dbecf

Browse files
authored
Merge branch 'master' into master
2 parents 4211d7e + 53b46db commit 17dbecf

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.appveyor.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ build_script:
3636
- cargo install --all-features --force --path . --locked --offline
3737
# Get ourselves a MIR-full libstd, and use it henceforth
3838
- cargo miri setup
39-
- set MIRI_SYSROOT=%USERPROFILE%\AppData\Local\miri\miri\cache\HOST
39+
- set MIRI_SYSROOT=%USERPROFILE%\AppData\Local\rust-lang\miri\cache\HOST
4040

4141
test_script:
4242
# Test miri

src/bin/cargo-miri.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ fn setup(ask_user: bool) {
248248
}
249249

250250
// Next, we need our own libstd. We will do this work in whatever is a good cache dir for this platform.
251-
let dirs = directories::ProjectDirs::from("miri", "miri", "miri").unwrap();
251+
let dirs = directories::ProjectDirs::from("org", "rust-lang", "miri").unwrap();
252252
let dir = dirs.cache_dir();
253253
if !dir.exists() {
254254
fs::create_dir_all(&dir).unwrap();

0 commit comments

Comments
 (0)