Merge pull request #7643 from sshukun/fix-list-all-namespaces

Fix output of list action when it is failed
pull/7645/head
Martin Hickey 6 years ago committed by GitHub
commit 478647fba0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -165,6 +165,10 @@ func (l *List) Run() ([]*release.Release, error) {
return true
})
if err != nil {
return nil, err
}
if results == nil {
return results, nil
}

Loading…
Cancel
Save