permission fixes
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
ycc
2024-01-05 17:01:36 +01:00
parent 379b40b2fb
commit a9f3b548e5
2 changed files with 9 additions and 7 deletions

View File

@ -52,7 +52,7 @@ func (id *Identity) Save(file string) error {
if err != nil {
return err
}
err = os.WriteFile(file, []byte(armor), 0644)
err = os.WriteFile(file, []byte(armor), 0600)
return err
}