Update tool dependencies (#36445)

Updates all dependencies in `Makefile`. The go fix was done
automatically, I just altered the variable name.

---------

Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
This commit is contained in:
silverwind
2026-01-24 09:58:28 +01:00
committed by GitHub
parent 5925433fe6
commit a608b9e1e3
3 changed files with 6 additions and 6 deletions
+2 -2
View File
@@ -219,8 +219,8 @@ func portOnly(hostport string) string {
if !ok {
return ""
}
if i := strings.Index(hostport, "]:"); i != -1 {
return hostport[i+len("]:"):]
if _, after2, ok2 := strings.Cut(hostport, "]:"); ok2 {
return after2
}
if strings.Contains(hostport, "]") {
return ""