Skip to content

Commit

Permalink
fix: use a lower file permission in file creation (#18206)
Browse files Browse the repository at this point in the history
  • Loading branch information
tac0turtle committed Oct 26, 2023
1 parent 2a6640d commit 331e106
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/util.go
Original file line number Diff line number Diff line change
Expand Up @@ -533,7 +533,7 @@ func DefaultBaseappOptions(appOpts types.AppOptions) []func(*baseapp.BaseApp) {
func GetSnapshotStore(appOpts types.AppOptions) (*snapshots.Store, error) {
homeDir := cast.ToString(appOpts.Get(flags.FlagHome))
snapshotDir := filepath.Join(homeDir, "data", "snapshots")
if err := os.MkdirAll(snapshotDir, os.ModePerm); err != nil {
if err := os.MkdirAll(snapshotDir, 0o644); err != nil {
return nil, fmt.Errorf("failed to create snapshots directory: %w", err)
}

Expand Down

0 comments on commit 331e106

Please sign in to comment.