Skip to content

Commit

Permalink
Merge pull request #8 from antipatico/7-getting-the-java-version-with…
Browse files Browse the repository at this point in the history
…-jre-v8-update-411-on-windows-fails

v0.3.1
  • Loading branch information
antipatico authored Apr 27, 2024
2 parents d0821ff + 7295857 commit 4e986fd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion balatromobile/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__="0.3.0"
__version__="0.3.1"
2 changes: 1 addition & 1 deletion balatromobile/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def run_silent(what: list[str], **kwargs):

def is_java_installed() -> bool:
try:
run_silent(["java", "--version"])
run_silent(["java", "-version"])
return True
except FileNotFoundError:
return False
Expand Down

0 comments on commit 4e986fd

Please sign in to comment.