1
0
mirror of https://github.com/rancher/norman.git synced 2025-06-26 23:37:55 +00:00

Fix bug that doesn't print errors

This commit is contained in:
Darren Shepherd 2019-02-01 15:05:20 -07:00
parent 196df5ed9d
commit a719648e4b

View File

@ -304,7 +304,7 @@ func filterConflictsError(err error) error {
var newErrors []error
for _, err := range errs.Errors {
if !ignoreError(err, true) {
newErrors = append(newErrors)
newErrors = append(newErrors, err)
}
}
return types.NewErrors(newErrors...)