diff options
author | Valentin Rothberg <vrothberg@redhat.com> | 2022-05-11 13:02:30 +0200 |
---|---|---|
committer | Valentin Rothberg <vrothberg@redhat.com> | 2022-05-11 13:18:55 +0200 |
commit | 813f6a68faee012af786a051d83de47594914693 (patch) | |
tree | 45b61e86eb74d974ba9ce04b21d517ed76dc137d | |
parent | c379014ee4e57dc19669ae92f45f8e4c0814295b (diff) | |
download | podman-813f6a68faee012af786a051d83de47594914693.tar.gz podman-813f6a68faee012af786a051d83de47594914693.tar.bz2 podman-813f6a68faee012af786a051d83de47594914693.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
@@ -569,7 +569,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 \ |