1
0
Fork 0

add debug prints temporarily

This commit is contained in:
Lili (Tlapka) 2021-04-08 17:47:50 +02:00
parent 34bcc01fb6
commit 8be6527bf7
1 changed files with 3 additions and 1 deletions

View File

@ -64,10 +64,12 @@ def check_prerequisites():
version = subprocess.run(["VBoxManage", "--version"], capture_output=True, text=True)
found = True
except FileNotFoundError:
print("capitalzied vbox not found")
pass # try no caps
if not found:
print("trying no caps")
try:
version = subprocess.run(["VBoxManage", "--version"], capture_output=True, text=True)
version = subprocess.run(["vboxmanage", "--version"], capture_output=True, text=True)
found = True
except FileNotFoundError:
print("Virtualbox not found.")