Skip to content

Commit d24c476

Browse files
authoredJul 31, 2024··
Add more paths to better align with conda's behaviour
1 parent af28601 commit d24c476

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed
 

‎condax/config.py

+4
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,10 @@ def candidates() -> "Generator[Optional[StrPath], None, None]":
9999
),
100100
]
101101
_condaxrc_path_list += [
102+
os.path.join("~", ".condax", "condaxrc"),
103+
os.path.join("~", ".condax", ".condaxrc"),
104+
os.path.join("~", ".config", "condax", "condaxrc"),
105+
os.path.join("~", ".config", "condax", ".condaxrc"),
102106
"/etc/condax/condaxrc",
103107
"/etc/condax/.condaxrc",
104108
"/var/lib/condax/condaxrc",

0 commit comments

Comments
 (0)
Please sign in to comment.