Skip to content

Commit

Permalink
Try to fix/workaround CI failure
Browse files Browse the repository at this point in the history
  • Loading branch information
jherland committed Sep 19, 2024
1 parent 02c28ba commit 4ede02f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fawltydeps/packages.py
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,7 @@ def debug_print(msg: str):
if found:
return

elif (path / "bin/python").is_file(): # Assume POSIX
elif (path / "bin/python").is_file() or (path / "bin/python").is_symlink(): # Assume POSIX
debug_print(" - on posix, found bin/python")
for _site_packages in path.glob("lib/python?.*/site-packages"):
if _site_packages.is_dir():
Expand Down

0 comments on commit 4ede02f

Please sign in to comment.