📦 deps(thirdparty): update snapshots

This commit is contained in:
ci[bot]
2026-06-01 02:53:39 +00:00
parent 54038462a6
commit 843ff9620b
152 changed files with 7539 additions and 822 deletions
@@ -4,6 +4,7 @@ const os = require("os");
const path = require("path");
const { spawnSync } = require("child_process");
const { createSymlinkOrSkip } = require("./symlink-test-utils");
const installer = require(path.resolve(__dirname, "..", "..", "bin", "install.js"));
function writeSkill(repoRoot, skillName, content = "# Skill\n") {
@@ -143,7 +144,10 @@ installer.installForTarget(${JSON.stringify(repoV2)}, { name: "BadTarget", path:
const symlinkRealTarget = path.join(tmpRoot, "symlink-real-target");
const symlinkTargetPath = path.join(tmpRoot, "symlink-target");
fs.mkdirSync(path.join(symlinkRealTarget, ".git"), { recursive: true });
fs.symlinkSync(symlinkRealTarget, symlinkTargetPath, "dir");
const createdSymlinkTarget = createSymlinkOrSkip(symlinkRealTarget, symlinkTargetPath, "dir");
if (!createdSymlinkTarget) {
return;
}
const symlinkTargetCheck = spawnSync(
process.execPath,