Get the shell executable for the current platform.
(self)
| 595 | return sys.executable |
| 596 | |
| 597 | def _get_shell_executable(self) -> List[str]: |
| 598 | """Get the shell executable for the current platform.""" |
| 599 | if platform.system() == 'Windows': |
| 600 | return ['cmd', '/c'] |
| 601 | else: |
| 602 | return ['/bin/sh', '-c'] |
| 603 | |
| 604 | def _get_node_executable(self) -> str: |
| 605 | """Get the Node.js executable for the current platform.""" |
no test coverage detected