Skip to content

Commit

Permalink
fix(dl): fix condition in DL after previous commit
Browse files Browse the repository at this point in the history
  • Loading branch information
hugo-syn committed Aug 25, 2024
1 parent 69da4eb commit 69f0761
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/downloader.go
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ func (gh *GitHub) getRepos() ([]*github.Repository, error) {
var err error

// we only want one repo
if gh.repo == "" {
if gh.repo != "" {
repo, err := gh.getSingleRepo(gh.repo)
if err != nil {
return nil, err
Expand Down

0 comments on commit 69f0761

Please sign in to comment.