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