Skip to content

Commit cad32d2

Browse files
fix: correct binary path construction by using filepath.Join instead of path.Join
1 parent cd1e96b commit cad32d2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

plugins/tool-utils.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ func ProcessTools(configs []ToolConfig, toolDir string) (map[string]*ToolInfo, e
190190
return nil, fmt.Errorf("error executing binary path template for %s: %w", config.Name, err)
191191
}
192192

193-
binaryPath := path.Join(installDir, buf.String())
193+
binaryPath := filepath.Join(installDir, buf.String())
194194
info.Binaries[binary.Name] = binaryPath
195195
}
196196

0 commit comments

Comments
 (0)