1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

Merge pull request #39809 from thaJeztah/fix_da_build_build_build

fix build after merge of outdated PR
This commit is contained in:
Tibor Vass 2019-08-27 18:57:37 -07:00 committed by GitHub
commit 7ce0e26c16
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -563,7 +563,7 @@ func copyFile(archiver Archiver, source, dest *copyEndpoint, identity *idtools.I
// are of the form \\?\Volume{<GUID>}\<path>. An example would be:
// \\?\Volume{dae8d3ac-b9a1-11e9-88eb-e8554b2ba1db}\bin\busybox.exe
if err := system.MkdirAll(filepath.Dir(dest.path), 0755, ""); err != nil {
if err := system.MkdirAll(filepath.Dir(dest.path), 0755); err != nil {
return err
}
} else {