From 4f2f9f8a1e10efc4dae7fbe6b3e946cefb2a656b Mon Sep 17 00:00:00 2001 From: Thomas Dreibholz Date: Mon, 8 Mar 2021 12:37:00 +0100 Subject: [PATCH] Formatting fix. --- builder/virtualbox/iso/step_create_vm.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builder/virtualbox/iso/step_create_vm.go b/builder/virtualbox/iso/step_create_vm.go index 75203f93a..645d93087 100644 --- a/builder/virtualbox/iso/step_create_vm.go +++ b/builder/virtualbox/iso/step_create_vm.go @@ -75,7 +75,7 @@ func (s *stepCreateVM) Run(ctx context.Context, state multistep.StateBag) multis commands[12] = []string{"modifyvm", name, "--accelerate3d", "on"} } else { commands[12] = []string{"modifyvm", name, "--accelerate3d", "off"} - } + } if config.GfxEFIResolution != "" { commands[13] = []string{"setextradata", name, "VBoxInternal2/EfiGraphicsResolution", config.GfxEFIResolution} }