summaryrefslogtreecommitdiffstats
path: root/check-handlebars-templates.sh
blob: 72fde4de40e752f442347994b94b511ce111455c (plain)
1
2
3
4
5
6
7
8
9
#!/bin/bash
set -e

# Compile Handlebars templates
make compile-handlebars-templates

git status

bash -c "[[ ! \"`git status --porcelain js/views/templates.js`\" ]] || ( echo 'Uncommitted changes in compiled Handlebar templates' && exit 1 )"