When starting docker raise proper error if ubridge is not available

Fix #484
pull/516/head
Julien Duponchelle 8 years ago
parent ec6e5a6118
commit ae5468a2d3
No known key found for this signature in database
GPG Key ID: F1E2485547D4595D

@ -403,7 +403,7 @@ class BaseVM:
if path == "ubridge":
path = shutil.which("ubridge")
if path is None:
if path is None or len(path) == 0:
raise VMError("uBridge is not installed")
return path

Loading…
Cancel
Save