Skip to content

Commit

Permalink
Bug fix for mounted paths for docker-in-docker.
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexhuszagh committed Jul 1, 2022
1 parent 5bb63ae commit 93a7dff
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/docker/shared.rs
Original file line number Diff line number Diff line change
Expand Up @@ -89,10 +89,7 @@ impl Directories {
}
#[cfg(not(target_os = "windows"))]
{
mount_root = mount_finder
.find_mount_path(host_root.clone())
.to_utf8()?
.to_string();
mount_root = host_root.to_utf8()?.to_string();
}
let mount_cwd: String;
#[cfg(target_os = "windows")]
Expand Down

0 comments on commit 93a7dff

Please sign in to comment.