Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/cmd/turnkey/pkg/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ func readFile(path string) (string, error) {

// Writes the given content to a file at the specified path.
func writeFile(content string, path string) error {
err := os.WriteFile(path, []byte(content), 0644)
err := os.WriteFile(path, []byte(content), 0600)
if err != nil {
return eris.Wrap(err, "error writing file")
}
Expand Down
Loading