Skip to content

Commit

Permalink
Update common/commands/configfile.go
Browse files Browse the repository at this point in the history
Co-authored-by: Yahav Itschak <yahavi@users.noreply.github.com>
  • Loading branch information
sverdlov93 and yahavi authored Oct 10, 2024
1 parent d9064a0 commit 6dbf522
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion common/commands/configfile.go
Original file line number Diff line number Diff line change
Expand Up @@ -659,7 +659,7 @@ func getRepositories(serverId string, repoTypes ...utils.RepoType) ([]string, er
for _, repoType := range repoTypes {
filteredRepos, err := utils.GetFilteredRepositoriesWithFilterParams(sm, nil, nil, services.RepositoriesFilterParams{RepoType: repoType.String()})
if err != nil {
return nil, fmt.Errorf("failed getting %s repositories list: %w", repoType, err)
return nil, fmt.Errorf("failed getting %s repositories list: %w", repoType.String(), err)
}
repos = append(repos, filteredRepos...)
}
Expand Down

0 comments on commit 6dbf522

Please sign in to comment.