File tree 2 files changed +2
-4
lines changed 2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
20
20
21
21
### Fixed
22
22
23
+ - #898 - fix the path to the mount root with docker-in-docker if mounting volumes.
23
24
- #897 - ensure ` target.$(...) ` config options override ` build ` ones when parsing strings and vecs.
24
25
- #895 - convert filenames in docker tags to ASCII lowercase and ignore invalid characters
25
26
- #885 - handle symlinks when using remote docker.
Original file line number Diff line number Diff line change @@ -89,10 +89,7 @@ impl Directories {
89
89
}
90
90
#[ cfg( not( target_os = "windows" ) ) ]
91
91
{
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 ( ) ;
96
93
}
97
94
let mount_cwd: String ;
98
95
#[ cfg( target_os = "windows" ) ]
You can’t perform that action at this time.
0 commit comments