mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-08 23:23:59 -06:00
4a8ef78d33
By prefixing them with `cmd /c` it will work with both `winner` and `ssh` connection types. This PR also reverts some bad stringer changes made in PR #2673
17 lines
501 B
Go
17 lines
501 B
Go
// generated by stringer -type=countHookAction hook_count_action.go; DO NOT EDIT
|
|
|
|
package command
|
|
|
|
import "fmt"
|
|
|
|
const _countHookAction_name = "countHookActionAddcountHookActionChangecountHookActionRemove"
|
|
|
|
var _countHookAction_index = [...]uint8{0, 18, 39, 60}
|
|
|
|
func (i countHookAction) String() string {
|
|
if i >= countHookAction(len(_countHookAction_index)-1) {
|
|
return fmt.Sprintf("countHookAction(%d)", i)
|
|
}
|
|
return _countHookAction_name[_countHookAction_index[i]:_countHookAction_index[i+1]]
|
|
}
|