blob: fd44cb60d3c5f444a5e8465991c4967e45016e16 (
plain)
1
2
3
4
5
6
7
8
|
#!/bin/bash
if grep '.PHONY: checkstyle' test/Makefile > /dev/null
then
make test-checkstyle
else
echo "Can't find checkstyle target in test/Makefile - skipping test checkstyle"
fi
|