From aa36e2f5e1f6c6b0202b64a333979ede308efe4c Mon Sep 17 00:00:00 2001 From: Anders Kaseorg Date: Fri, 12 Jul 2019 22:49:51 -0700 Subject: [PATCH] check-templates: Exclude static/icons/fonts/template.hbs. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This file was unchecked until the .handlebars ↦ .hbs rename, so this is the easiest way to get tests passing again. Signed-off-by: Anders Kaseorg --- tools/check-templates | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools/check-templates b/tools/check-templates index 72e735280a..ef59cde995 100755 --- a/tools/check-templates +++ b/tools/check-templates @@ -18,6 +18,8 @@ EXCLUDED_FILES = [ "tools/tests/test_template_data", # Our parser doesn't handle the way its conditionals are layered 'templates/zerver/emails/missed_message.source.html', + # Previously unchecked and our parser doesn't like its indentation + 'static/icons/fonts/template.hbs', ] def check_our_files(modified_only, all_dups, targets):