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)
|
version = subprocess.run(["VBoxManage", "--version"], capture_output=True, text=True)
|
||||||
found = True
|
found = True
|
||||||
except FileNotFoundError:
|
except FileNotFoundError:
|
||||||
|
print("capitalzied vbox not found")
|
||||||
pass # try no caps
|
pass # try no caps
|
||||||
if not found:
|
if not found:
|
||||||
|
print("trying no caps")
|
||||||
try:
|
try:
|
||||||
version = subprocess.run(["VBoxManage", "--version"], capture_output=True, text=True)
|
version = subprocess.run(["vboxmanage", "--version"], capture_output=True, text=True)
|
||||||
found = True
|
found = True
|
||||||
except FileNotFoundError:
|
except FileNotFoundError:
|
||||||
print("Virtualbox not found.")
|
print("Virtualbox not found.")
|
||||||
|
|
Reference in New Issue