Skip to content

Commit

Permalink
Use 755 as directory permissions rather than 644
Browse files Browse the repository at this point in the history
  • Loading branch information
robdimarco-render committed Nov 13, 2024
1 parent 8733bcb commit 8233568
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ func (c *Config) Persist() error {
return err
}

err = os.MkdirAll(filepath.Dir(path), 0644)
err = os.MkdirAll(filepath.Dir(path), 0755)
if err != nil {
return err
}
Expand Down

0 comments on commit 8233568

Please sign in to comment.