We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f7c2619 commit 6bba74bCopy full SHA for 6bba74b
Makefile.common
@@ -49,7 +49,7 @@ endif
49
GOTEST := $(GO) test
50
GOTEST_DIR :=
51
ifneq ($(CIRCLE_JOB),)
52
-ifneq ($(shell command -v gotestsum > /dev/null),)
+ifneq ($(shell command -v gotestsum 2> /dev/null),)
53
GOTEST_DIR := test-results
54
GOTEST := gotestsum --junitfile $(GOTEST_DIR)/unit-tests.xml --
55
endif
@@ -182,7 +182,7 @@ endif
182
.PHONY: common-yamllint
183
common-yamllint:
184
@echo ">> running yamllint on all YAML files in the repository"
185
-ifeq (, $(shell command -v yamllint > /dev/null))
+ifeq (, $(shell command -v yamllint 2> /dev/null))
186
@echo "yamllint not installed so skipping"
187
else
188
yamllint .
0 commit comments