-
Notifications
You must be signed in to change notification settings - Fork 90
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
remove exec command and job translation (#4604)
- Loading branch information
Showing
42 changed files
with
25 additions
and
1,729 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.