mirror of
https://github.com/drone/drone-cli.git
synced 2024-11-23 01:11:57 +01:00
Removed pointer when passing ListOptions parameter
This commit is contained in:
parent
092fbbe898
commit
534651760a
@ -57,7 +57,7 @@ func buildList(c *cli.Context) error {
|
||||
return err
|
||||
}
|
||||
|
||||
builds, err := client.BuildList(owner, name, &drone.ListOptions{Page: c.Int("page")})
|
||||
builds, err := client.BuildList(owner, name, drone.ListOptions{Page: c.Int("page")})
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user