fix(windows): opencode github install (#5587)

This commit is contained in:
Luke Parker 2025-12-16 08:12:54 +10:00 committed by GitHub
parent 8fcc80bc20
commit f3e64cfb19
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -278,7 +278,7 @@ export const GithubInstallCommand = cmd({
process.platform === "darwin"
? `open "${url}"`
: process.platform === "win32"
? `start "${url}"`
? `start "" "${url}"`
: `xdg-open "${url}"`
exec(command, (error) => {