Skip to content

Commit

Permalink
Update pkg/minikube/node/start.go
Browse files Browse the repository at this point in the history
Co-authored-by: Steven Powell <[email protected]>
  • Loading branch information
ComradeProgrammer and spowelljr authored Jun 30, 2024
1 parent 779568b commit f68fe8c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pkg/minikube/node/start.go
Original file line number Diff line number Diff line change
Expand Up @@ -856,7 +856,8 @@ func tryRegistry(r command.Runner, driverName, imageRepository, ip string) {
imageRepository = images.DefaultKubernetesRepo
}

opts = append(opts, fmt.Sprintf("https://%s/", imageRepository))
curlTarget := fmt.Sprintf("https://%s/", imageRepository)
opts = append(opts, curlTarget)
exe := "curl"
if runtime.GOOS == "windows" {
exe = "curl.exe"
Expand Down

0 comments on commit f68fe8c

Please sign in to comment.