Appease formatter
continuous-integration/drone/push Build is passing

This commit was merged in pull request #588.
This commit is contained in:
2025-08-12 12:18:29 +00:00
committed by 3wordchant
parent 7add56df00
commit 032fe99086
+2 -2
View File
@@ -206,8 +206,8 @@ func LintForErrors(recipe recipe.Recipe) error {
}
}
if (len(errors) > 0) {
return fmt.Errorf("recipe '%s' failed lint checks:\n" + errors[1:], recipe.Name)
if len(errors) > 0 {
return fmt.Errorf("recipe '%s' failed lint checks:\n"+errors[1:], recipe.Name)
}
log.Debugf("linting successful, %s is well configured", recipe.Name)