Skip to content

Commit cd5a0d6

Browse files
committed
:nail_polish: be clearer about the value passed to ResolveRemotesToRepos
`repo` will always be blank here, so replace the argument with a blank literal instead.
1 parent db88ac4 commit cd5a0d6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

command/root.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,7 @@ func determineBaseRepo(apiClient *api.Client, cmd *cobra.Command, ctx context.Co
317317
return nil, err
318318
}
319319

320-
repoContext, err := context.ResolveRemotesToRepos(remotes, apiClient, repo)
320+
repoContext, err := context.ResolveRemotesToRepos(remotes, apiClient, "")
321321
if err != nil {
322322
return nil, err
323323
}

0 commit comments

Comments
 (0)