(path: Path.Path)
| 798 | |
| 799 | const makeWindowsBackend = (): ServiceBackend => { |
| 800 | const controlDir = (path: Path.Path): string => |
| 801 | path.join(resolveExecutorDataDir(path), "server-control"); |
| 802 | const taskXmlPath = (path: Path.Path): string => path.join(controlDir(path), "run-daemon.xml"); |
| 803 | const wrapperCmdPath = (path: Path.Path): string => path.join(controlDir(path), "run-daemon.cmd"); |
| 804 | const launcherVbsPath = (path: Path.Path): string => |
no test coverage detected