Skip to content
This repository has been archived by the owner on Feb 12, 2024. It is now read-only.

Commit

Permalink
sharness/Makefile: add 'go-poll-endpoint' target
Browse files Browse the repository at this point in the history
  • Loading branch information
chriscool committed Oct 2, 2017
1 parent e3a6238 commit 045d6c8
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion test/sharness/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ aggregate: clean-test-results $(T)
@echo "*** $@ ***"
ls test-results/t*-*.sh.*.counts | $(AGGREGATE)

deps: sharness $(BINS) curl
deps: sharness $(BINS) curl go-poll-endpoint

sharness:
@echo "*** checking $@ ***"
Expand All @@ -49,5 +49,11 @@ sharness:
curl:
@which curl >/dev/null || (echo "Please install curl!" && false)

go-poll-endpoint:
@which go-poll-endpoint >/dev/null || \
(echo "Please install go-poll-endpoint!" && \
echo "See: https://github.com/ipfs/go-poll-endpoint" && \
false)

.PHONY: all help clean clean-test-results $(T) aggregate deps sharness

0 comments on commit 045d6c8

Please sign in to comment.