Add makefile target to find .gitignore files in the project files.

Signed-off-by: Roberto Rosario <roberto.rosario.gonzalez@gmail.com>
This commit is contained in:
Roberto Rosario
2017-10-21 18:30:16 -04:00
parent 0cd5f3c3a3
commit 3fc9b8e62c

View File

@@ -338,3 +338,9 @@ docker_service_postgres_off:
safety_check:
safety check
# Other
find_gitignores:
@export FIND_GITIGNORES=`find -name '.gitignore'| wc -l`; \
if [ $${FIND_GITIGNORES} -gt 1 ] ;then echo "More than one .gitignore found."; fi