pkg/install: fix dropped error

Signed-off-by: Lars Lehtonen <lars.lehtonen@gmail.com>
This commit is contained in:
Lars Lehtonen
2021-07-28 10:31:11 -07:00
parent 57b72c0b50
commit 20b44db580

View File

@@ -103,6 +103,9 @@ func crdsAreReady(factory client.DynamicFactory, crdKinds []string) (bool, error
return true, nil
})
if err != nil {
return false, errors.Wrap(err, "Error polling for CRD")
}
return areReady, nil
}