Skip to content

Commit abba2e2

Browse files
committed
fixes
1 parent 6450fb9 commit abba2e2

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/snowflake/cli/api/secure_utils.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
import stat
22
from pathlib import Path
33

4+
import oschmod
5+
46

57
def file_permissions_are_strict(file_path: Path) -> bool:
68
accessible_by_others = (
@@ -12,4 +14,4 @@ def file_permissions_are_strict(file_path: Path) -> bool:
1214
| stat.S_IXGRP # executable by group
1315
| stat.S_IXOTH # executable by others
1416
)
15-
return (file_path.stat().st_mode & accessible_by_others) == 0
17+
return (oschmod.get_mode(str(file_path)) & accessible_by_others) == 0

0 commit comments

Comments
 (0)