Skip to content

Commit

Permalink
use complete repo name
Browse files Browse the repository at this point in the history
  • Loading branch information
vilaca committed Sep 27, 2024
1 parent 71c821d commit c704a90
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions build/extract.go
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,7 @@ func main() {
if repo == "" || owner == "" {
continue
}
fmt.Printf("%s/%s\n", owner, repo)
info, err := getRepoInfo(repo, token)
info, err := getRepoInfo(fmt.Sprintf("%s/%s", owner, repo), token)
if err != nil {
fmt.Printf("Error fetching repo %s: %v\n", repo, err)
continue
Expand Down

0 comments on commit c704a90

Please sign in to comment.