Skip to content

Commit

Permalink
Fix folder/file permissions
Browse files Browse the repository at this point in the history
  • Loading branch information
jmattheis committed Mar 10, 2019
1 parent 6bacce3 commit 234c585
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config/readwrite.go
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,6 @@ func WriteConfig(location string, conf *Config) error {
if err != nil {
return err
}
os.MkdirAll(filepath.Dir(location), 0644)
os.MkdirAll(filepath.Dir(location), 0755)
return ioutil.WriteFile(location, bytes, 0644)
}

0 comments on commit 234c585

Please sign in to comment.