Skip to content

Commit

Permalink
fixup! get_jdk_path() should now find the java executable on MacOS
Browse files Browse the repository at this point in the history
  • Loading branch information
GuyTeichman committed Jan 5, 2024
1 parent a9618a9 commit 1000447
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rnalysis/utils/installs.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def get_jdk_path():
if len(matches) == 0:
raise FileNotFoundError(f'No java executable found in {base_dir}')

return matches[0]
return matches[0].parent

def is_jdk_installed():
try:
Expand Down

0 comments on commit 1000447

Please sign in to comment.