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
1 changed files with 1 additions and 1 deletions

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 {