Commit ce584930 authored by Mitchell Hashimoto's avatar Mitchell Hashimoto

fmt

parent 1d0adbf2
......@@ -51,7 +51,7 @@ func (d *VBox42Driver) IsRunning(name string) (bool, error) {
for _, line := range strings.Split(stdout.String(), "\n") {
// Need to trim off CR character when running in windows
line = strings.TrimRight(line, "\r");
line = strings.TrimRight(line, "\r")
if line == `VMState="running"` {
return true, nil
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment