diff options
author | Valentin Rothberg <vrothberg@redhat.com> | 2022-05-11 13:02:30 +0200 |
---|---|---|
committer | Matthew Heon <mheon@redhat.com> | 2022-06-14 13:19:15 -0400 |
commit | 431c350b3ab082e19bcf84ef3cb040e8b7605722 (patch) | |
tree | 774fe167014e2050da9f90e312a1148d00b8111f | |
parent | 54d1121c0e5eccd550196d45d456df14bcde8759 (diff) | |
download | podman-431c350b3ab082e19bcf84ef3cb040e8b7605722.tar.gz podman-431c350b3ab082e19bcf84ef3cb040e8b7605722.tar.bz2 podman-431c350b3ab082e19bcf84ef3cb040e8b7605722.zip |
[CI:DOCS] fix `make localbenchmarks`
Since `./hack` has been removed from the Makefile's path, add it back
for `make localbenchmarks` to make `podman-registry` binary available
for running local registries.
Signed-off-by: Valentin Rothberg <vrothberg@redhat.com>
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -572,7 +572,7 @@ remoteintegration: test-binaries ginkgo-remote .PHONY: localbenchmarks localbenchmarks: test-binaries - ACK_GINKGO_RC=true $(GOBIN)/ginkgo \ + PATH=$(PATH):$(shell PWD)/hack ACK_GINKGO_RC=true $(GOBIN)/ginkgo \ -focus "Podman Benchmark Suite" \ -tags "$(BUILDTAGS) benchmarks" -noColor \ -noisySkippings=false -noisyPendings=false \ |