(cmd *cobra.Command, args []string)
| 117 | } |
| 118 | |
| 119 | func debugTermPreRun(cmd *cobra.Command, args []string) error { |
| 120 | if debugTermStdin || debugTermInput != "" { |
| 121 | return nil |
| 122 | } |
| 123 | return preRunSetupRpcClient(cmd, args) |
| 124 | } |
| 125 | |
| 126 | func getDebugTermMode() (string, error) { |
| 127 | mode := strings.ToLower(debugTermMode) |
nothing calls this directly
no test coverage detected