fix(doctor): quote paths and respect version channels in fix messages

This commit is contained in:
YeonGyu-Kim
2026-03-03 00:31:00 +09:00
parent d4033da41a
commit 3d66a30406
4 changed files with 130 additions and 3 deletions
@@ -77,3 +77,7 @@ export async function getLatestPluginVersion(currentVersion: string | null): Pro
const channel = extractChannel(currentVersion)
return getLatestVersion(channel)
}
export function getSuggestedInstallTag(currentVersion: string | null): string {
return extractChannel(currentVersion)
}