Open
Description
Intel HAXM won't be installed in OS X. The problem lies on lib/cmds/initialize.ts#L81.
The script is being called like this
spawnSync('sudo', ['silent_install.sh'], {stdio: 'inherit', cwd: toolDir});
but it should be called like this spawnSync('sudo', ['sh', 'silent_install.sh'], {stdio: 'inherit', cwd: toolDir});
PS: There should be a flag so that the installation of HAXM was ignored... this messes up doing webdriver-manager update under a OSX CI.