Skip to content

Commit 8f8e4c0

Browse files
committed
Don't return an error if the download tool fails
windows-driver can fail on non-windows
1 parent 1e15f3f commit 8f8e4c0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tools/download.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,8 @@ func (t *Tools) Download(pack, name, version, behaviour string) error {
182182
correctTool, correctSystem := findTool(pack, name, version, data)
183183

184184
if correctTool.Name == "" || correctSystem.URL == "" {
185-
return errors.New("We couldn't find a tool with the name " + name + " and version " + version + " packaged by " + pack)
185+
t.Logger("We couldn't find a tool with the name " + name + " and version " + version + " packaged by " + pack)
186+
return nil
186187
}
187188

188189
key := correctTool.Name + "-" + correctTool.Version

0 commit comments

Comments
 (0)