()
| 104 | } |
| 105 | |
| 106 | func finishCommandContext() { |
| 107 | if commandContextCancel != nil { |
| 108 | commandContextCancel() |
| 109 | commandContextCancel = nil |
| 110 | } |
| 111 | commandContext = context.Background() |
| 112 | } |
| 113 | |
| 114 | func commandSkipsAuth(cmd *cobra.Command) bool { |
| 115 | for c := cmd; c != nil; c = c.Parent() { |
no outgoing calls
no test coverage detected