diff --git a/pkg/recipe/sauce.go b/pkg/recipe/sauce.go index ad6e8a5e..14165ff0 100644 --- a/pkg/recipe/sauce.go +++ b/pkg/recipe/sauce.go @@ -1,6 +1,7 @@ package recipe import ( + "errors" "fmt" "path/filepath" "strings" @@ -172,7 +173,7 @@ func (s *Sauce) RenderInitHelp() (string, error) { output := buf.String() if strings.Contains(output, "") { - return "", fmt.Errorf("some of the variables used in the initHelp template were undefined") + return "", errors.New("some of the variables used in the initHelp template were undefined") } return output, nil