Skip to content

Commit

Permalink
Merge pull request vmware-tanzu#4002 from alrs/fix-install-err
Browse files Browse the repository at this point in the history
pkg/install: fix dropped error
  • Loading branch information
sseago authored Aug 4, 2021
2 parents 7cb6147 + 20b44db commit 8b47596
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions pkg/install/install.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
}

Expand Down

0 comments on commit 8b47596

Please sign in to comment.