Skip to content

Commit

Permalink
Flip windows curl check logic (k0sproject#185)
Browse files Browse the repository at this point in the history
  • Loading branch information
kke committed Aug 10, 2021
1 parent 0063740 commit feb169a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config/cluster/host.go
Original file line number Diff line number Diff line change
Expand Up @@ -372,7 +372,7 @@ func (h *Host) WaitK0sServiceRunning() error {
func (h *Host) NeedCurl() bool {
// Windows does not need any packages for web requests
if h.Configurer.Kind() == "windows" {
return true
return false
}

// Controllers always need curl
Expand Down

0 comments on commit feb169a

Please sign in to comment.