1
0
Fork 0
mirror of https://github.com/anyproto/any-sync.git synced 2025-06-08 05:57:03 +09:00

fix: file perm

This commit is contained in:
hellodword 2024-07-03 16:41:29 +00:00
parent 23390e556e
commit 65095f4186
No known key found for this signature in database
GPG key ID: 094D44EBA7DBAE80

View file

@ -61,5 +61,5 @@ func (n *nodeConfStore) SaveLast(ctx context.Context, c nodeconf.Configuration)
if err != nil {
return
}
return os.WriteFile(path, data, 0755)
return os.WriteFile(path, data, 0644)
}