Fix newline in printf.

This commit is contained in:
Péter Szilágyi 2014-08-07 10:12:59 +03:00
parent 0984039c12
commit cf85eb906d

2
xgo.go
View File

@ -35,7 +35,7 @@ func main() {
log.Fatalf("Failed to retrieve the working directory: %v.", err)
}
// Cross compile the requested package into the local folder
fmt.Printf("Cross compiling %s...", path)
fmt.Printf("Cross compiling %s...\n", path)
if err := run(exec.Command("docker", "run", "-v", pwd+":/build", container, path)); err != nil {
log.Fatalf("Failed to cross compile package: %v.", err)
}