mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Create directories for tar files with relaxed permissions
Docker-DCO-1.1-Signed-off-by: Alexey Kotlyarov <alexey@infoxchange.net.au> (github: koterpillar)
This commit is contained in:
parent
37893c3db0
commit
2aeccdd3bb
1 changed files with 1 additions and 1 deletions
|
@ -403,7 +403,7 @@ func Untar(archive io.Reader, dest string, options *TarOptions) error {
|
|||
parent := filepath.Dir(hdr.Name)
|
||||
parentPath := filepath.Join(dest, parent)
|
||||
if _, err := os.Lstat(parentPath); err != nil && os.IsNotExist(err) {
|
||||
err = os.MkdirAll(parentPath, 600)
|
||||
err = os.MkdirAll(parentPath, 0777)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue