We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 29090d0 commit 18f55cfCopy full SHA for 18f55cf
collector/src/toolchain.rs
@@ -43,7 +43,7 @@ impl Sysroot {
43
triple: &str,
44
backends: &[CodegenBackend],
45
) -> Result<Self, SysrootDownloadError> {
46
- let cache_directory = cache_directory.join(triple).join(&sha);
+ let cache_directory = cache_directory.join(&sha).join(triple);
47
fs::create_dir_all(&cache_directory).map_err(|e| SysrootDownloadError::IO(e.into()))?;
48
49
let download = SysrootDownload {
0 commit comments