Skip to content

Commit b2ca716

Browse files
committed
fix: symlinked xdg installs
1 parent 357975e commit b2ca716

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

chadtree/__main__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ def parse_args() -> Namespace:
7575
_EXEC_PATH = _EXEC_PATH.parent.resolve(strict=True) / _EXEC_PATH.name
7676
_REQ = REQUIREMENTS.read_text()
7777

78-
_IN_VENV = _RT_PY == _EXEC_PATH
78+
_IN_VENV = _RT_PY.parent.resolve() / _RT_PY.name == _EXEC_PATH
7979

8080

8181
if command == "deps":

0 commit comments

Comments
 (0)