Skip to content

Commit

Permalink
Avoid "Entering/Leaving directory" output in Make (#9246) (#9424)
Browse files Browse the repository at this point in the history
  • Loading branch information
justinas authored Dec 16, 2021
1 parent 4105120 commit 0775475
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 0775475

Please sign in to comment.