From 019ab13f5398b3e552efb660555db8daac725a6c Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Sun, 7 Jul 2013 18:04:30 -0700 Subject: [PATCH] builder/virtualbox: whitespace --- builder/virtualbox/step_create_vm.go | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/builder/virtualbox/step_create_vm.go b/builder/virtualbox/step_create_vm.go index 3e21c5bd7..6a8d579ef 100644 --- a/builder/virtualbox/step_create_vm.go +++ b/builder/virtualbox/step_create_vm.go @@ -22,7 +22,10 @@ func (s *stepCreateVM) Run(state map[string]interface{}) multistep.StepAction { name := config.VMName commands := make([][]string, 4) - commands[0] = []string{"createvm", "--name", name, "--ostype", config.GuestOSType, "--register"} + commands[0] = []string{ + "createvm", "--name", name, + "--ostype", config.GuestOSType, "--register", + } commands[1] = []string{ "modifyvm", name, "--boot1", "disk", "--boot2", "dvd", "--boot3", "none", "--boot4", "none",