Skip to content

Commit

Permalink
fix permission in os.go
Browse files Browse the repository at this point in the history
  • Loading branch information
aphralG committed Nov 24, 2023
1 parent b972563 commit e2742a5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/core/os.go
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ func EnableWritePermissionForSocket(path string) error {
case <-timeout:
return lastError
default:
lastError = os.Chmod(path, 0o660)
lastError = os.Chmod(path, 0o600)
if lastError == nil {
return nil
}
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit e2742a5

Please sign in to comment.