Skip to content

Commit

Permalink
remove exec command and job translation (#4604)
Browse files Browse the repository at this point in the history
  • Loading branch information
wdbaruni authored Oct 13, 2024
1 parent c3dd1b0 commit 026800b
Show file tree
Hide file tree
Showing 42 changed files with 25 additions and 1,729 deletions.
17 changes: 17 additions & 0 deletions cmd/cli/deprecated/exec.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
package deprecated

import (
"github.com/spf13/cobra"
)

func NewExecCommand() *cobra.Command {
cancelCmd := &cobra.Command{
Use: "exec",
Deprecated: "exec was an experimental feature and no longer supported",
RunE: func(cmd *cobra.Command, cmdArgs []string) error {
return nil
},
}

return cancelCmd
}
79 changes: 0 additions & 79 deletions cmd/cli/exec/args.go

This file was deleted.

276 changes: 0 additions & 276 deletions cmd/cli/exec/exec.go

This file was deleted.

Loading

0 comments on commit 026800b

Please sign in to comment.