mirror of
https://github.com/tweag/gomod2nix.git
synced 2024-11-08 03:29:07 +00:00
builder/install.go: Make build failures more apparent by attaching stdout/stderr
This commit is contained in:
parent
78068d481c
commit
b8c2216317
1 changed files with 2 additions and 0 deletions
|
@ -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)
|
||||
|
||||
|
|
Loading…
Reference in a new issue