From d80b782668f15ab6799382ea11c333b63b9b8b1b Mon Sep 17 00:00:00 2001 From: Tianon Gravi Date: Mon, 1 Dec 2014 10:40:44 -0700 Subject: [PATCH] Remove "boot2docker ip" stderr output It confuses folks far too often, so as pretty as it is, it ought to go so we stop having to answer the same question over and over. --- cmds.go | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/cmds.go b/cmds.go index 2ba13f9..743be1c 100644 --- a/cmds.go +++ b/cmds.go @@ -411,9 +411,7 @@ func cmdIP() error { } } if IP != "" { - fmt.Fprintf(os.Stderr, "\nThe VM's Host only interface IP address is: ") - fmt.Printf("%s", IP) - fmt.Fprintf(os.Stderr, "\n\n") + fmt.Println(IP) } else { fmt.Fprintf(os.Stderr, "\nFailed to get VM Host only IP address.\n") fmt.Fprintf(os.Stderr, "\tWas the VM initialized using boot2docker?\n")