Skip to content

Commit

Permalink
Mkdir appdata with 0700
Browse files Browse the repository at this point in the history
  • Loading branch information
akovalenko committed May 25, 2024
1 parent 5fde819 commit 408709b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion caddy.go
Original file line number Diff line number Diff line change
Expand Up @@ -869,7 +869,7 @@ func InstanceID() (uuid.UUID, error) {
if err != nil {
return uuid, err
}
err = os.MkdirAll(appDataDir, 0o600)
err = os.MkdirAll(appDataDir, 0o700)
if err != nil {
return uuid, err
}
Expand Down

0 comments on commit 408709b

Please sign in to comment.