Skip to content

Commit

Permalink
Merge pull request #1875 from FabianKramm/main
Browse files Browse the repository at this point in the history
fix: parse driver error
  • Loading branch information
FabianKramm authored Jun 18, 2024
2 parents bec6e2b + c372575 commit d6fcc87
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/cli/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ func PrintDriverInfo(verb string, driver DriverType, log log.Logger) {

func ParseDriverType(driver string) (DriverType, error) {
switch driver {
case "helm":
case "", "helm":
return HelmDriver, nil
case "platform":
return PlatformDriver, nil
Expand Down

0 comments on commit d6fcc87

Please sign in to comment.