We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dc32f5b commit 557b1e3Copy full SHA for 557b1e3
engine/pkg/config/config.go
@@ -75,7 +75,7 @@ func LoadInstanceID() (string, error) {
75
instanceID = xid.New().String()
76
log.Dbg("no instance_id file was found, generate new instance ID", instanceID)
77
78
- if err := os.MkdirAll(path.Dir(idFilepath), 0755); err != nil {
+ if err := os.MkdirAll(path.Dir(idFilepath), 0644); err != nil {
79
return "", fmt.Errorf("failed to make directory meta: %w", err)
80
}
81
0 commit comments