From 617069dc999e4f4d57a71a777aa681abc8b20225 Mon Sep 17 00:00:00 2001 From: Gyuho Lee Date: Fri, 30 Mar 2018 10:51:20 -0700 Subject: [PATCH] hack/scripts-dev/Makefile: fix functional-tester build paths Signed-off-by: Gyuho Lee --- hack/scripts-dev/Makefile | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/hack/scripts-dev/Makefile b/hack/scripts-dev/Makefile index 7fb510b89..96af2f51a 100644 --- a/hack/scripts-dev/Makefile +++ b/hack/scripts-dev/Makefile @@ -479,14 +479,14 @@ build-docker-functional-tester: docker run \ --rm \ gcr.io/etcd-development/etcd-functional-tester:go$(GO_VERSION) \ - /bin/bash -c "/etcd --version && \ - /etcd-failpoints --version && \ - ETCDCTL_API=3 /etcdctl version && \ - /etcd-agent -help || true && \ - /etcd-tester -help || true && \ - /etcd-runner --help || true && \ - /benchmark --help || true && \ - /etcd-test-proxy -help || true" + /bin/bash -c "./bin/etcd --version && \ + ./bin/etcd-failpoints --version && \ + ETCDCTL_API=3 ./bin/etcdctl version && \ + ./bin/etcd-agent -help || true && \ + ./bin/etcd-tester -help || true && \ + ./bin/etcd-runner --help || true && \ + ./bin/benchmark --help || true && \ + ./bin/etcd-test-proxy -help || true" push-docker-functional-tester: $(info GO_VERSION: $(GO_VERSION))