func()

in helpers/foundation-deployer/steps/steps.go [153:167]


func (s Steps) ResetStep(name string) error {
	s.Steps[name] = Step{
		Name:   name,
		Status: pendingStatus,
	}
	err := s.SaveSteps()
	if err != nil {
		return err
	}
	fmt.Printf("# resetting step '%s' execution\n", name)
	if isNested(name) {
		return s.ResetStep(parent(name))
	}
	return nil
}