mirror of
https://github.com/spalencsar/bearhub.git
synced 2026-07-07 00:04:15 +02:00
7 lines
309 B
Python
7 lines
309 B
Python
from bauh.commons.system import SimpleProcess
|
|
from bauh.gems.web import NATIVEFIER_BIN_PATH
|
|
|
|
|
|
def install(url: str, name: str, output_dir: str, electron_version: str, cwd: str) -> SimpleProcess:
|
|
return SimpleProcess([NATIVEFIER_BIN_PATH, url, '--name', name, '-e', electron_version, output_dir], cwd=cwd)
|