Browse Source

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

Luke Parker 2 months ago
parent
commit
f3e64cfb19
1 changed files with 1 additions and 1 deletions
  1. 1 1
      packages/opencode/src/cli/cmd/github.ts

+ 1 - 1
packages/opencode/src/cli/cmd/github.ts

@@ -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) => {