MCPcopy Create free account
hub / github.com/UsefulSoftwareCo/executor / releaseDaemonStartLock

Function releaseDaemonStartLock

apps/cli/src/daemon-state.ts:372–378  ·  view source on GitHub ↗
(
  input: DaemonStartLock,
)

Source from the content-addressed store, hash-verified

370 });
371
372export 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

Callers 2

spawnAndWaitForDaemonFunction · 0.90

Calls 1

removeMethod · 0.65

Tested by

no test coverage detected