Skip to content

Commit

Permalink
build: Move protobuf go:generate line to roachpb
Browse files Browse the repository at this point in the history
With the new recommendation to use `go generate ./pkg/...` the protobuf
generation step was getting skipped.
  • Loading branch information
bdarnell committed Nov 24, 2016
1 parent b5a19ba commit 1117809
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 0 additions & 2 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@

package main

//go:generate make protobuf

import (
"fmt"
"math/rand"
Expand Down
2 changes: 2 additions & 0 deletions pkg/roachpb/main_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 1117809

Please sign in to comment.