(path: Path.Path)
| 24 | // --------------------------------------------------------------------------- |
| 25 | |
| 26 | export const resolveExecutorDataDir = (path: Path.Path): string => |
| 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"); |
no test coverage detected