builder/install.go: Make build failures more apparent by attaching stdout/stderr

This commit is contained in:
adisbladis 2022-08-17 15:35:04 +08:00
parent 78068d481c
commit b8c2216317

View file

@ -41,6 +41,8 @@ func main() {
}
cmd := exec.Command("go", "install", path)
cmd.Stdout = os.Stdout
cmd.Stderr = os.Stderr
fmt.Printf("Executing '%s'\n", cmd)