Get the Node.js executable for the current platform.
(self)
| 602 | return ['/bin/sh', '-c'] |
| 603 | |
| 604 | def _get_node_executable(self) -> str: |
| 605 | """Get the Node.js executable for the current platform.""" |
| 606 | if platform.system() == 'Windows': |
| 607 | return 'node.exe' |
| 608 | return 'node' |
| 609 | |
| 610 | async def _local_install_requirements( |
| 611 | self, requirements: List[str]) -> tuple[bool, str]: |
no test coverage detected