summaryrefslogtreecommitdiff
path: root/scripts/lint_templates_bash.rb
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/lint_templates_bash.rb')
-rwxr-xr-xscripts/lint_templates_bash.rb6
1 files changed, 6 insertions, 0 deletions
diff --git a/scripts/lint_templates_bash.rb b/scripts/lint_templates_bash.rb
index 8db9469ecdf..cd36bb629ab 100755
--- a/scripts/lint_templates_bash.rb
+++ b/scripts/lint_templates_bash.rb
@@ -58,6 +58,12 @@ module LintTemplatesBash
def check_template(template)
parsed = process_content(template.content)
+
+ unless parsed.valid?
+ warn "#{template.full_name} is invalid: #{parsed.errors.inspect}"
+ return true
+ end
+
results = parsed.jobs.map do |name, job|
out, success = check_job(job)