[#26] fejctl now fully replace Makefile & build

This commit is contained in:
Jef Roosens 2021-04-16 00:06:48 +02:00
parent 0ba31bd8ba
commit 0828dd36d6
Signed by: Jef Roosens
GPG key ID: 955C0660072F691F
4 changed files with 15 additions and 191 deletions

View file

@ -1,7 +1,7 @@
#!/usr/bin/env bash
# This hook lints the code, and if we're on develop or master, also forces the tests to pass.
make lint &> /dev/null 2>&1 || {
./fejctl lint &> /dev/null 2>&1 || {
>&2 echo "Format check failed, use 'make lint' for more information.";
exit 1;
}