( input: DaemonStartLock, )
| 370 | }); |
| 371 | |
| 372 | export const releaseDaemonStartLock = ( |
| 373 | input: DaemonStartLock, |
| 374 | ): Effect.Effect<void, PlatformError, FileSystem.FileSystem | Path.Path> => |
| 375 | Effect.gen(function* () { |
| 376 | const fs = yield* FileSystem.FileSystem; |
| 377 | yield* fs.remove(input.path, { force: true }); |
| 378 | }); |
| 379 | |
| 380 | // --------------------------------------------------------------------------- |
| 381 | // Process helpers |
no test coverage detected