Skip to content

Commit

Permalink
Avoid "Entering/Leaving directory" output in Make
Browse files Browse the repository at this point in the history
  • Loading branch information
justinas committed Dec 6, 2021
1 parent 675fb3d commit fce1d3b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dronegen/common.go
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ var (
var goRuntime value

func init() {
v, err := exec.Command("make", "-C", "build.assets", "print-go-version").Output()
v, err := exec.Command("make", "-s", "-C", "build.assets", "print-go-version").Output()
if err != nil {
log.Fatalf("could not get Go version: %v", err)
}
Expand Down

0 comments on commit fce1d3b

Please sign in to comment.