Unverified Commit 38eb7376 authored by Matt Tucker's avatar Matt Tucker Committed by GitHub

fix(client): fix bug in list releases to append all releases

parent 204f823b
......@@ -360,7 +360,7 @@ func (h *Client) list(ctx context.Context, req *rls.ListReleasesRequest) (*rls.L
resp = r
continue
}
resp.Releases = append(resp.Releases, r.GetReleases()[0])
resp.Releases = append(resp.Releases, r.GetReleases()...)
}
return resp, nil
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment