Skip to content

Commit

Permalink
fix idx
Browse files Browse the repository at this point in the history
  • Loading branch information
vilaca committed Sep 27, 2024
1 parent 5bc0e94 commit 71c821d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build/extract.go
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ func main() {
for scanner.Scan() {
fields := strings.Split(scanner.Text(), "/")
owner := strings.TrimSpace(fields[3])
repo := strings.TrimSpace(fields[3])
repo := strings.TrimSpace(fields[4])
if repo == "" || owner == "" {
continue
}
Expand Down

0 comments on commit 71c821d

Please sign in to comment.