Only run if yamllint is installed

Signed-off-by: Levi Harrison <git@leviharrison.dev>
This commit is contained in:
Levi Harrison 2021-06-25 08:03:58 -04:00
parent b0df5d9568
commit b7d2f4e189
No known key found for this signature in database
GPG key ID: 23A7BDEAE860B57D

View file

@ -201,7 +201,11 @@ endif
.PHONY: common-yamllint
common-yamllint:
@echo ">> running yamllint on all YAML files in the repository"
ifeq (, $(shell which yamllint))
@echo "yamllint not installed so skipping"
else
yamllint .
endif
# For backward-compatibility.
.PHONY: common-staticcheck