Răsfoiți Sursa

fix: gh install trim remote origin (#2030)

Aiden Cline 6 luni în urmă
părinte
comite
847a63e15a
1 a modificat fișierele cu 5 adăugiri și 1 ștergeri
  1. 5 1
      packages/opencode/src/cli/cmd/github.ts

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

@@ -185,7 +185,11 @@ export const GithubInstallCommand = cmd({
         }
 
         // Get repo info
-        const info = await $`git remote get-url origin`.quiet().nothrow().text()
+        const info = await $`git remote get-url origin`
+          .quiet()
+          .nothrow()
+          .text()
+          .then((text) => text.trim())
         // match https or git pattern
         // ie. https://github.com/sst/opencode.git
         // ie. https://github.com/sst/opencode