()
| 194 | } |
| 195 | let pendingStartupRegistryLock: DaemonRegistryMutationLock | null = startupRegistryLock; |
| 196 | const releaseStartupRegistryLock = (): void => { |
| 197 | pendingStartupRegistryLock?.release(); |
| 198 | pendingStartupRegistryLock = null; |
| 199 | }; |
| 200 | |
| 201 | const isRunningAfterLock = await checkExistingDaemon(socketPath); |
| 202 | if (isRunningAfterLock) { |
no test coverage detected