-
Notifications
You must be signed in to change notification settings - Fork 3.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build: Move protobuf go:generate line to roachpb
With the new recommendation to use `go generate ./pkg/...` the protobuf generation step was getting skipped.
- Loading branch information
Showing
2 changed files
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,8 +16,6 @@ | |
|
||
package main | ||
|
||
//go:generate make protobuf | ||
|
||
import ( | ||
"fmt" | ||
"math/rand" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,4 +16,6 @@ | |
// Author: Tobias Schottdorf ([email protected]) | ||
package roachpb_test | ||
|
||
//go:generate make -C ../.. protobuf | ||
|
||
import _ "github.com/cockroachdb/cockroach/pkg/util/log" // for flags |