Skip to content

Commit 2ee14c5

Browse files
committed
Improve error message when a known plugin is not found
1 parent 05f95e5 commit 2ee14c5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cmd/step/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ func main() {
101101
}
102102
if u := plugin.GetURL(name); u != "" {
103103
//nolint:stylecheck // this is a top level error - capitalization is ok
104-
return fmt.Errorf("The plugin %q is not it in your system.\nDownload it from %s", name, u)
104+
return fmt.Errorf("The plugin %q was not found on this system.\nDownload it from %s", name, u)
105105
}
106106
return cli.ShowCommandHelp(ctx, name)
107107
}

0 commit comments

Comments
 (0)