Add output for checking JVM arch

This commit is contained in:
Fierelier 2022-05-13 12:34:32 +02:00
parent 7b25aacf8c
commit f4744631e3

View File

@ -356,6 +356,7 @@ def main():
lv["osVersion"] = platform.version()
if lv["jvmArch"] == "":
print(colored(colorama.Fore.GREEN,"Querying JVM architecture..."))
if "64-Bit" in subprocess.check_output([lv["java"],"-version"]).decode("utf-8"):
lv["jvmArch"] = "amd64"
else: