()
| 61 | }; |
| 62 | |
| 63 | export const currentDaemonScopeId = (): string => { |
| 64 | const explicitScope = process.env.EXECUTOR_SCOPE_DIR?.trim(); |
| 65 | if (explicitScope && explicitScope.length > 0) { |
| 66 | return `scope:${resolve(explicitScope)}`; |
| 67 | } |
| 68 | return `cwd:${resolve(process.cwd())}`; |
| 69 | }; |
| 70 | |
| 71 | // --------------------------------------------------------------------------- |
| 72 | // Paths |
no test coverage detected