You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
301 B

#!/usr/bin/env bash
REPODIR=`git rev-parse --show-toplevel`
cd $REPODIR
bash compile-handlebars-templates.sh || exit 1
if [[ $(git diff --name-only) ]]; then
echo "Please submit your compiled handlebars templates"
echo
git diff
exit 1
fi
echo "All up to date! Carry on :D"
exit 0