fix: use a lower file permission in file creation (#18206)

This commit is contained in:
Marko 2023-10-26 09:48:36 +02:00 committed by GitHub
parent 2a6640d488
commit 331e106b97
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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)
}