add debug prints temporarily
This commit is contained in:
parent
34bcc01fb6
commit
8be6527bf7
|
@ -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.")
|
||||
|
|
Reference in New Issue