Skip to content

Commit

Permalink
cli: fix printed virtual machine types when qemu is missing.
Browse files Browse the repository at this point in the history
Signed-off-by: Abiola Ibrahim <[email protected]>
  • Loading branch information
abiosoft committed Nov 9, 2024
1 parent 8a1507f commit ae4a537
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/start.go
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ func init() {
defaultVMType = environment.DefaultVMType()

mounts := strings.Join([]string{defaultMountTypeQEMU, "9p", "virtiofs"}, ", ")
types := strings.Join([]string{defaultVMType, "vz"}, ", ")
types := strings.Join([]string{"qemu", "vz"}, ", ")

saveConfigDefault := true
if envSaveConfig.Exists() {
Expand Down

0 comments on commit ae4a537

Please sign in to comment.