mirror of
https://github.com/mattermost/mattermost.git
synced 2026-02-03 20:40:00 -05:00
11 lines
266 B
Bash
Executable file
11 lines
266 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
make build-templates
|
|
|
|
if [[ `git status templates/ --porcelain` ]]; then
|
|
echo "mjml templates have changed; Please compile and include compiled files"
|
|
git diff templates/ # show diffs as part of error message
|
|
exit 1
|
|
else
|
|
echo "PASS"
|
|
fi
|