Fix bug preventing SDIO from launching

This commit is contained in:
2Shirt 2024-04-01 20:08:46 -07:00
parent 3ea7d987d1
commit 709ceef2b7
Signed by: 2Shirt
GPG key ID: 152FAC923B0E132C

View file

@ -1102,7 +1102,7 @@ def open_snappy_driver_installer_origin() -> None:
sdio_path = get_sdio_path(interactive=False)
log_dir = format_log_path(tool=True).parent
cmd = [sdio_path, '-log_dir', log_dir]
popen_program(cmd, check=False, cwd=sdio_path.parent)
popen_program(cmd, cwd=sdio_path.parent)
def open_windows_activation() -> None: