fix discord depends (#549)

This commit is contained in:
paisley
2026-03-17 11:53:44 +08:00
committed by GitHub
Unverified
parent 686bc2f235
commit c86bacd240
3 changed files with 13 additions and 0 deletions

View File

@@ -102,6 +102,12 @@ async function fetchSparseRepo(repo, ref, paths, checkoutDir) {
}
echo`Bundling preinstalled skills...`;
if (process.env.SKIP_PREINSTALLED_SKILLS === '1') {
echo`⏭ SKIP_PREINSTALLED_SKILLS=1 set, skipping skills fetch.`;
process.exit(0);
}
const manifestSkills = loadManifest();
rmSync(OUTPUT_ROOT, { recursive: true, force: true });