MCPcopy Create free account
hub / github.com/dyoshikawa/rulesync / removeTempDirectory

Function removeTempDirectory

src/utils/file.ts:432–438  ·  view source on GitHub ↗
(tempDir: string)

Source from the content-addressed store, hash-verified

430 * @param tempDir - Path to the temporary directory to remove
431 */
432export async function removeTempDirectory(tempDir: string): Promise<void> {
433 try {
434 await rm(tempDir, { recursive: true, force: true });
435 } catch {
436 // Best-effort cleanup; silently ignore errors
437 }
438}

Callers 2

fetchSkillFilesFunction · 0.85
fetchAndConvertToolFilesFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…