This commit is contained in:
firebadnofire 2025-05-16 18:22:35 +00:00
parent 0e0cfddae2
commit 8a240afeb3
Signed by: firebadnofire
SSH key fingerprint: SHA256:bnN1TGRauJN84CxL1IZ/2uHNvJualwYkFjOKaaOilJE
2 changed files with 4 additions and 4 deletions

View file

@ -24,8 +24,8 @@ func checkBlockedWordsFilePerm(path string) {
}
mode := info.Mode().Perm()
if mode != 0o700 {
log.Fatalf("Permission on %s must be 700, found %o", path, mode)
if mode != 0o600 {
log.Fatalf("Permission on %s must be 600, found %o", path, mode)
}
}