5 lines
100 B
Bash
Executable file
5 lines
100 B
Bash
Executable file
#!/usr/bin/env zsh
|
|
if [ ! -z $(grep "fmt-check:" "Makefile") ]; then
|
|
make fmt-check 2>/dev/null
|
|
fi
|