fix: Use correct platform check string 'win32' explicitly

This commit is contained in:
Trent Pierce 2026-01-26 14:59:22 -06:00
parent 308251c69c
commit 76eccff72c

View File

@ -438,7 +438,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("GoLang.Go", timeoutMs);
if (result.code !== 0) {
return {