(path: Path.Path)
| 27 | resolve(process.env.EXECUTOR_DATA_DIR ?? path.join(homedir(), ".executor")); |
| 28 | |
| 29 | const serverControlDir = (path: Path.Path): string => |
| 30 | path.join(resolveExecutorDataDir(path), "server-control"); |
| 31 | |
| 32 | const localServerManifestPath = (path: Path.Path): string => |
| 33 | path.join(serverControlDir(path), "server.json"); |
no test coverage detected