Skip to content

Commit

Permalink
tools/cross_compile: faster build times
Browse files Browse the repository at this point in the history
  • Loading branch information
akavel committed Jun 23, 2016
1 parent 3e4a071 commit 450848d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/cross_compile.go
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ func main() {

// build
fmt.Printf("Building %s...", out)
output, err := exec.Command("go", "build", "-o", out).CombinedOutput()
output, err := exec.Command("go", "build", "-i", "-o", out).CombinedOutput()
if err != nil {
fmt.Printf("\n%s\n", output)
} else {
Expand Down

0 comments on commit 450848d

Please sign in to comment.