(path: Path.Path)
| 809 | |
| 810 | const makeWindowsBackend = (): ServiceBackend => { |
| 811 | const controlDir = (path: Path.Path): string => |
| 812 | path.join(resolveExecutorDataDir(path), "server-control"); |
| 813 | const taskXmlPath = (path: Path.Path): string => path.join(controlDir(path), "run-daemon.xml"); |
| 814 | const wrapperCmdPath = (path: Path.Path): string => path.join(controlDir(path), "run-daemon.cmd"); |
| 815 | const launcherVbsPath = (path: Path.Path): string => |
no test coverage detected