diff --git a/builder/vmware/common/step_type_boot_command.go b/builder/vmware/common/step_type_boot_command.go index 99c08ed2c..f3fa5dc49 100644 --- a/builder/vmware/common/step_type_boot_command.go +++ b/builder/vmware/common/step_type_boot_command.go @@ -361,9 +361,9 @@ func vncSendString(c *vnc.ClientConn, original string) { // to deal with network latency and the OS responding to the keystroke. // It is kind of arbitrary but it is better than nothing. c.KeyEvent(keyCode, true) - time.Sleep(100 * time.Millisecond) + time.Sleep(10 * time.Millisecond) c.KeyEvent(keyCode, false) - time.Sleep(100 * time.Millisecond) + time.Sleep(10 * time.Millisecond) if keyShift { c.KeyEvent(KeyLeftShift, false)