Skip to content

Commit 69f0761

Browse files
committed
fix(dl): fix condition in DL after previous commit
1 parent 69da4eb commit 69f0761

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/downloader.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ func (gh *GitHub) getRepos() ([]*github.Repository, error) {
111111
var err error
112112

113113
// we only want one repo
114-
if gh.repo == "" {
114+
if gh.repo != "" {
115115
repo, err := gh.getSingleRepo(gh.repo)
116116
if err != nil {
117117
return nil, err

0 commit comments

Comments
 (0)