From 15937ac543c0bf915fb7e7ecb135a30fc62a9e0d Mon Sep 17 00:00:00 2001 From: James Munnelly Date: Tue, 2 Jul 2019 21:02:26 +0100 Subject: [PATCH] Fix workspace name in default binariesPath Signed-off-by: James Munnelly --- test/acme/dns/options.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/acme/dns/options.go b/test/acme/dns/options.go index cbc02bdc5..e4eb780f1 100644 --- a/test/acme/dns/options.go +++ b/test/acme/dns/options.go @@ -54,7 +54,7 @@ func applyDefaults(f *fixture) { runfiles := os.Getenv("TEST_SRCDIR") if f.binariesPath == "" { if runfiles != "" { - f.binariesPath = runfiles + "/__main__/hack/bin" + f.binariesPath = runfiles + "/cert_manager/hack/bin" } } if f.jsonConfig == nil {