add missing return statement

Signed-off-by: Meredith Lancaster <malancas@github.com>
This commit is contained in:
Meredith Lancaster 2025-01-13 12:50:58 -07:00
parent 611eb86e68
commit 1d807c2291

View file

@ -208,7 +208,7 @@ func (c *LiveClient) getBundle(url string) (*bundle.Bundle, error) {
var out []byte
decompressed, err := snappy.Decode(out, body)
if err != nil {
fmt.Errorf("failed to decompress with snappy: %w", err)
return fmt.Errorf("failed to decompress with snappy: %w", err)
}
var pbBundle v1.Bundle