(dataDir: string)
| 15 | resolve(process.env.EXECUTOR_DATA_DIR ?? join(homedir(), ".executor")); |
| 16 | |
| 17 | const serverControlDir = (dataDir: string): string => join(dataDir, "server-control"); |
| 18 | |
| 19 | const localAuthTokenPath = (dataDir: string = resolveExecutorDataDir()): string => |
| 20 | join(serverControlDir(dataDir), "auth.json"); |
no outgoing calls
no test coverage detected