Skip to content

Commit

Permalink
chore: Fix directory permission (#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
gitferry authored Jan 5, 2024
1 parent e79c678 commit 99c47b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion util/path.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ func FileExists(name string) bool {
}

func MakeDirectory(dir string) error {
err := os.MkdirAll(dir, 0600)
err := os.MkdirAll(dir, 0700)
if err != nil {
// Show a nicer error message if it's because a symlink
// is linked to a directory that does not exist
Expand Down

0 comments on commit 99c47b7

Please sign in to comment.