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.
2 parents 3b78e51 + e65fe55 commit cbea66aCopy full SHA for cbea66a
Makefile
@@ -73,7 +73,12 @@ endif
73
# When this is running in travis, it will only check the travis commit range
74
.gitvalidation:
75
@which git-validation > /dev/null 2>/dev/null || (echo "ERROR: git-validation not found. Consider 'make install.tools' target" && false)
76
- git-validation -q -run DCO,short-subject,dangling-whitespace -v -range $(EPOCH_TEST_COMMIT)..HEAD
+ifeq ($(TRAVIS),true)
77
+ git-validation -q -run DCO,short-subject,dangling-whitespace
78
+else
79
+ git-validation -v -run DCO,short-subject,dangling-whitespace -range $(EPOCH_TEST_COMMIT)..HEAD
80
+endif
81
+
82
83
.PHONY: install.tools
84
install.tools: .install.golint .install.govet .install.gitvalidation
0 commit comments