From eb3d6261b4a496824d18b0394c11830e4f789ec5 Mon Sep 17 00:00:00 2001 From: Damian Gryski Date: Mon, 16 May 2022 10:52:14 -0700 Subject: [PATCH] builder: remove extra formatting verb from error message --- builder/commands.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builder/commands.go b/builder/commands.go index 110ab4ac..932e9ace 100644 --- a/builder/commands.go +++ b/builder/commands.go @@ -74,7 +74,7 @@ func LookupCommand(name string) (string, error) { } return cmdName, nil } - return "", errors.New("%#v: none of these commands were found in your $PATH: " + strings.Join(commands[name], " ")) + return "", errors.New("none of these commands were found in your $PATH: " + strings.Join(commands[name], " ")) } func execCommand(name string, args ...string) error {