We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6450fb9 commit abba2e2Copy full SHA for abba2e2
src/snowflake/cli/api/secure_utils.py
@@ -1,6 +1,8 @@
1
import stat
2
from pathlib import Path
3
4
+import oschmod
5
+
6
7
def file_permissions_are_strict(file_path: Path) -> bool:
8
accessible_by_others = (
@@ -12,4 +14,4 @@ def file_permissions_are_strict(file_path: Path) -> bool:
12
14
| stat.S_IXGRP # executable by group
13
15
| stat.S_IXOTH # executable by others
16
)
- 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