fix(write_files): Create directories with mode 0755

Fix #28
This commit is contained in:
Brian Waldon 2014-03-17 17:09:32 -07:00
parent fdc2e68497
commit d397906b7f

View File

@ -38,7 +38,7 @@ func ProcessWriteFile(base string, wf *WriteFile) error {
fullPath := path.Join(base, wf.Path)
if err := os.MkdirAll(path.Dir(fullPath), os.FileMode(0744)); err != nil {
if err := os.MkdirAll(path.Dir(fullPath), os.FileMode(0755)); err != nil {
return err
}