Look for Makefile, not makefile

This commit is contained in:
James Allen 2017-12-01 09:01:36 +00:00
parent 040546b1d3
commit fa2a3574db

View file

@ -61,7 +61,7 @@ test_acceptance_app_run: docker-shared.yml
test_acceptance_modules: docker-shared.yml
for dir in modules/*; \
do \
if [ -e $$dir/makefile ]; then \
if [ -e $$dir/Makefile ]; then \
(make test_acceptance_module MODULE=$$dir) \
fi \
done