Skip to content

Commit

Permalink
Bug fix to use POSIX path when checking if toolchain is installed.
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexhuszagh committed Jun 22, 2022
1 parent f2e1dba commit 4b1dae9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/docker/remote.rs
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@ pub fn copy_volume_container_rust_triple(
.args(&[
"bash",
"-c",
&format!("[[ -d '{}' ]]", dst_toolchain.to_utf8()?),
&format!("[[ -d '{}' ]]", dst_toolchain.as_posix()?),
])
.run_and_get_status(verbose, true)?
.success();
Expand Down

0 comments on commit 4b1dae9

Please sign in to comment.