Fix woodpecker-go (#2090)

Closes #2083 

This is breaking because I removed the old, unused `sync` parameter
(#2083).
This commit is contained in:
qwerty287
2023-08-03 02:39:37 +02:00
committed by GitHub
parent f9ec800481
commit 176850495e
3 changed files with 4 additions and 4 deletions

View File

@@ -27,7 +27,7 @@ func repoSync(c *cli.Context) error {
return err
}
repos, err := client.RepoListOpts(true, true)
repos, err := client.RepoListOpts(true)
if err != nil || len(repos) == 0 {
return err
}