From db4a2d28777f6769ea0154b6043a51a00312d8fc Mon Sep 17 00:00:00 2001 From: Daniel J Walsh Date: Mon, 25 Oct 2021 12:36:34 -0400 Subject: [PATCH] Update pkg/config/config.go Co-authored-by: Valentin Rothberg --- pkg/config/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/config/config.go b/pkg/config/config.go index d43dfa88f..3d7101399 100644 --- a/pkg/config/config.go +++ b/pkg/config/config.go @@ -1151,7 +1151,7 @@ func (c *Config) FindHelperBinary(name string, searchPATH bool) (string, error) if searchPATH { return exec.LookPath(name) } - configHint := "To resolve this error, set the helper_binaries_dir key in the `[engine]` section of containers.conf to directory containing your helper binaries." + configHint := "To resolve this error, set the helper_binaries_dir key in the `[engine]` section of containers.conf to the directory containing your helper binaries." if len(c.Engine.HelperBinariesDir) == 0 { return "", errors.Errorf("could not find %q because there are no helper binary directories configured. %s", name, configHint) }