diff options
author | Damian Gryski <[email protected]> | 2022-05-16 10:52:14 -0700 |
---|---|---|
committer | Ron Evans <[email protected]> | 2022-05-18 09:06:03 +0200 |
commit | eb3d6261b4a496824d18b0394c11830e4f789ec5 (patch) | |
tree | 3fa94330b26611f5175842a6314b2bb3818b84fd /builder | |
parent | 15724848f952e49e75c0bd21a0d4e35e87231fe3 (diff) | |
download | tinygo-eb3d6261b4a496824d18b0394c11830e4f789ec5.tar.gz tinygo-eb3d6261b4a496824d18b0394c11830e4f789ec5.zip |
builder: remove extra formatting verb from error message
Diffstat (limited to 'builder')
-rw-r--r-- | builder/commands.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builder/commands.go b/builder/commands.go index 110ab4ac4..932e9acea 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 { |