use 0755 instead of 0700

This commit is contained in:
Victor Vieux 2013-07-25 15:45:15 +00:00
parent 7df6c4b9ad
commit 1c509f4350
1 changed files with 1 additions and 1 deletions

View File

@ -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
}