add debug prints temporarily

This commit is contained in:
2021-04-08 17:47:50 +02:00
parent 34bcc01fb6
commit 8be6527bf7
+3 -1
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.")