fix: Correct missed 'windows' to 'win32' in uv install check

This commit is contained in:
Trent Pierce 2026-01-26 15:03:45 -06:00
parent 76eccff72c
commit d666e5cf96

View File

@ -389,7 +389,7 @@ export async function installSkill(params: SkillInstallRequest): Promise<SkillIn
code: brewResult.code,
};
}
} else if (resolveRuntimePlatform() === "windows" && hasBinary("winget")) {
} else if (resolveRuntimePlatform() === "win32" && hasBinary("winget")) {
const result = await installWithWinget("astral-sh.uv", timeoutMs);
if (result.code !== 0) {
return {