Plugins Preinstall: Fix URL parsing when includes basic auth (#115143)

Preinstall: Fix URL setting when includes basic auth
This commit is contained in:
Andres Martinez Gotor
2025-12-11 13:38:02 +01:00
committed by GitHub
parent eef14d2cee
commit e6b5ece559
2 changed files with 6 additions and 1 deletions
+1 -1
View File
@@ -102,7 +102,7 @@ func (cfg *Cfg) processPreinstallPlugins(rawInstallPlugins []string, preinstallP
if len(parts) > 1 {
version = parts[1]
if len(parts) > 2 {
url = parts[2]
url = strings.Join(parts[2:], "@")
}
}