Fixed opening Snappy Driver Installer Origin
* Set working dir so the config file is read * Pipe output to prevent flooding the screen with debug data
This commit is contained in:
parent
569810c3ca
commit
3f96a31e1e
1 changed files with 3 additions and 2 deletions
|
|
@ -289,8 +289,9 @@ def open_device_manager():
|
|||
|
||||
|
||||
def open_snappy_driver_origin():
|
||||
cmd = r'{BinDir}\_Drivers\SDIO\SDIO.exe'.format(**global_vars)
|
||||
popen_program(cmd)
|
||||
cwd = r'{BinDir}\_Drivers\SDIO'.format(**global_vars)
|
||||
cmd = [r'{}\SDIO.exe'.format(cwd)]
|
||||
popen_program(cmd, cwd=cwd, pipe=True)
|
||||
|
||||
|
||||
def open_windows_activation():
|
||||
|
|
|
|||
Loading…
Reference in a new issue