Skip to content

Commit 93a7dff

Browse files
committed
Bug fix for mounted paths for docker-in-docker.
1 parent 5bb63ae commit 93a7dff

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/docker/shared.rs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -89,10 +89,7 @@ impl Directories {
8989
}
9090
#[cfg(not(target_os = "windows"))]
9191
{
92-
mount_root = mount_finder
93-
.find_mount_path(host_root.clone())
94-
.to_utf8()?
95-
.to_string();
92+
mount_root = host_root.to_utf8()?.to_string();
9693
}
9794
let mount_cwd: String;
9895
#[cfg(target_os = "windows")]

0 commit comments

Comments
 (0)