Skip to content

Commit

Permalink
Merge pull request #5600 from justinsb/fix_5598
Browse files Browse the repository at this point in the history
make dep-ensure checks that mercurial is installed
  • Loading branch information
k8s-ci-robot authored Aug 13, 2018
2 parents 7ebc9b9 + f38d220 commit da6bd17
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -456,8 +456,12 @@ utils-dist:
# --------------------------------------------------
# development targets

.PHONY: dep-prereqs
dep-prereqs:
(which hg > /dev/null) || (echo "dep requires that mercurial is installed"; exit 1)

.PHONY: dep-ensure
dep-ensure:
dep-ensure: dep-prereqs
dep ensure -v
find vendor/ -name "BUILD" -delete
find vendor/ -name "BUILD.bazel" -delete
Expand Down

0 comments on commit da6bd17

Please sign in to comment.