Skip to content

Commit

Permalink
fix paths
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrooTheChen committed Sep 23, 2024
1 parent 626695e commit 39f1e66
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions buf.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ modules:
- path: lib/vector-core/proto
- path: proto/third-party
- path: proto/vector
- path: proto/google/cloud/bigquery/storage/v1
lint:
use:
- DEFAULT
Expand Down
2 changes: 1 addition & 1 deletion build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,6 @@ fn main() {
println!("cargo:rerun-if-changed=proto/third-party/dnstap.proto");
println!("cargo:rerun-if-changed=proto/third-party/google/pubsub/v1/pubsub.proto");
println!("cargo:rerun-if-changed=proto/third-party/google/rpc/status.proto");
println!("cargo:rerun-if-changed=proto/third-party/google/rpc/code.proto"
println!("cargo:rerun-if-changed=proto/vector/dd_metric.proto");
println!("cargo:rerun-if-changed=proto/vector/dd_trace.proto");
println!("cargo:rerun-if-changed=proto/vector/ddsketch_full.proto");
Expand Down Expand Up @@ -158,6 +157,7 @@ fn main() {
&[
"proto/third-party",
"proto/vector",
"proto/gogole/cloud/bigquery/storage/v1",

Check failure

Code scanning / check-spelling

Unrecognized Spelling Error

gogole is not a recognized word. (unrecognized-spelling)
"lib/vector-core/proto/",
],
)
Expand Down
2 changes: 1 addition & 1 deletion lib/vector-core/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ fn main() {
.bytes(["raw_bytes"])
.compile_protos(
&["proto/event.proto"],
&["proto", "../../proto/third-party", "../../proto/vector"],
&["proto", "../../proto/third-party", "../../proto/vector", "../../proto/google/cloud/bigquery/storage/v1"],
)
.unwrap();
}

0 comments on commit 39f1e66

Please sign in to comment.