MCPcopy Create free account
hub / github.com/awslabs/llrt / createOutputDirectories

Function createOutputDirectories

build.mjs:620–625  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

618 await fs.rm(TMP_DIR, {
619 recursive: true,
620 force: true,
621 });
622}
623
624async function createOutputDirectories() {
625 await fs.rm(OUT_DIR, { recursive: true, force: true });
626 await fs.mkdir(OUT_DIR, { recursive: true });
627 await rmTmpDir();
628 await fs.mkdir(TMP_DIR, { recursive: true });

Callers 1

build.mjsFile · 0.85

Calls 1

rmTmpDirFunction · 0.85

Tested by

no test coverage detected