Skip to content

Commit

Permalink
Fix build (#435)
Browse files Browse the repository at this point in the history
Signed-off-by: Tamal Saha <tamal@appscode.com>
  • Loading branch information
tamalsaha authored May 4, 2019
1 parent 1ba8f67 commit 9bc57e7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 72 deletions.
6 changes: 4 additions & 2 deletions pkg/cmds/get/get.go
Original file line number Diff line number Diff line change
Expand Up @@ -324,8 +324,10 @@ func (r *RuntimeSorter) Sort() error {
case *metav1beta1.Table:
includesTable = true

if err := getflags.NewTableSorter(t, r.field).Sort(); err != nil {
continue
if sorter, err := getflags.NewTableSorter(t, r.field); err != nil {
return err
} else if err := sorter.Sort(); err != nil {
return err
}
default:
includesRuntimeObjs = true
Expand Down
70 changes: 0 additions & 70 deletions pkg/validator/validate.go

This file was deleted.

0 comments on commit 9bc57e7

Please sign in to comment.