Skip to content

Commit

Permalink
use 0755 instead of 0700
Browse files Browse the repository at this point in the history
  • Loading branch information
vieux committed Jul 25, 2013
1 parent 7df6c4b commit 1c509f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion image.go
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ func StoreImage(img *Image, layerData Archive, root string, store bool) error {
}
// Store the layer
layer := layerPath(root)
if err := os.MkdirAll(layer, 0700); err != nil {
if err := os.MkdirAll(layer, 0755); err != nil {
return err
}

Expand Down

0 comments on commit 1c509f4

Please sign in to comment.