Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: use unix path separator since path already normalized
In the case for Windows, this line at frontend/dockerfile/dockerfile2llb/convert.go#L1142 ```go dest += string(filepath.Separator) ``` was adding the `\\` to a path that is already normalized to unix-format, hence ending up with dest paths like `/\\` for `C:\\` and `/test\\` for `C:\\test\\`. the src paths are well normalized too at ~L1290. fixes moby#4696 Signed-off-by: Anthony Nandaa <[email protected]>
- Loading branch information