Skip to content

Commit 18f55cf

Browse files
committed
Change directory structure of toolchain cache directory
To make it easier to figure out how many toolchains we have.
1 parent 29090d0 commit 18f55cf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

collector/src/toolchain.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ impl Sysroot {
4343
triple: &str,
4444
backends: &[CodegenBackend],
4545
) -> Result<Self, SysrootDownloadError> {
46-
let cache_directory = cache_directory.join(triple).join(&sha);
46+
let cache_directory = cache_directory.join(&sha).join(triple);
4747
fs::create_dir_all(&cache_directory).map_err(|e| SysrootDownloadError::IO(e.into()))?;
4848

4949
let download = SysrootDownload {

0 commit comments

Comments
 (0)