Browse Source

use 0755 instead of 0700

Victor Vieux 12 years ago
parent
commit
1c509f4350
1 changed files with 1 additions and 1 deletions
  1. 1 1
      image.go

+ 1 - 1
image.go

@@ -68,7 +68,7 @@ func StoreImage(img *Image, layerData Archive, root string, store bool) error {
 	}
 	}
 	// Store the layer
 	// Store the layer
 	layer := layerPath(root)
 	layer := layerPath(root)
-	if err := os.MkdirAll(layer, 0700); err != nil {
+	if err := os.MkdirAll(layer, 0755); err != nil {
 		return err
 		return err
 	}
 	}