We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cdc6983 commit 38fa08cCopy full SHA for 38fa08c
src/gardenlinux/build/exporter.py
@@ -67,7 +67,7 @@ def _getInterpreter(path: str | PathLike[str]) -> pathlib.Path:
67
def _get_python_from_path() -> pathlib.Path | None:
68
interpreter = None
69
for dir in os.environ["PATH"].split(":"):
70
- binary = pathlib.Path(dir, "python3").joinpath("python3")
+ binary = pathlib.Path(dir, "python3")
71
if binary.is_file():
72
interpreter = binary
73
break
0 commit comments