diff --git a/devine/commands/wvd.py b/devine/commands/wvd.py index 2cddae0..793c814 100644 --- a/devine/commands/wvd.py +++ b/devine/commands/wvd.py @@ -84,6 +84,10 @@ def parse(path: Path) -> None: log = logging.getLogger("wvd") + if not path.exists(): + console.log(f"[bright_blue]{path.absolute()}[/] does not exist...") + return + device = Device.load(path) log.info(f"System ID: {device.system_id}")