Skip to content

Commit 3237483

Browse files
committed
Normalize string case comparisons
1 parent c4f89a9 commit 3237483

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

provider.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ func (t ProviderType) UnderlyingProviderType() ProviderType {
101101

102102
// Configuration of an explicit provider has the next priority
103103
conf := config.Read()
104-
switch conf.Provider {
104+
switch strings.ToLower(conf.Provider) {
105105
case "docker":
106106
return ProviderDocker
107107
case "podman":

0 commit comments

Comments
 (0)