Skip to content

Commit

Permalink
Test: debugging workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
Frissi0n committed Dec 3, 2023
1 parent 00327fc commit 7288f8b
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions gtfonow/gtfonow.py
Original file line number Diff line number Diff line change
Expand Up @@ -3904,7 +3904,9 @@ def get_binary_path(binary_name):
for path in os.environ["PATH"].split(os.pathsep):
full_path = os.path.join(path, binary_name)
if os.path.isfile(full_path) and os.access(full_path, os.X_OK):
log.debug("Found %s at %s", binary_name, full_path)
return full_path
log.debug("Could not find %s in PATH", binary_name)
return None


Expand Down

0 comments on commit 7288f8b

Please sign in to comment.