Make MakeroidStarter.py work on MacOS

Hi,

first post here, before asking a question, an information on how to make MakeroidStarter.py work on MacOS.
The thing is, subprocess.check_call with a list as a first argument does not work on MacOS for whatever reason…
so I changed any call to this function by adding ‘’.join(…) to the list of arguments, which gives e.g.:

check_call(
’ '.join([‘adb’,
‘-s’, device,
‘forward’, ‘tcp:8001’, ‘tcp:8001’]),
shell=True)

Cheers, and thanks for this wonderful app.

Stéphane

1 Like