Skip to content

Commit

Permalink
Fix deprecated compile method (#426)
Browse files Browse the repository at this point in the history
  • Loading branch information
andrzejressel authored Sep 29, 2024
1 parent b0ef60d commit 1b981a8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pulumi_wasm_proto/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ fn main() -> Result<(), Box<dyn std::error::Error>> {
.build_client(false)
.build_server(false)
.out_dir(model_location)
.compile(
.compile_protos(
&[
"proto/pulumi/plugin.proto",
"proto/pulumi/engine.proto",
Expand All @@ -26,7 +26,7 @@ fn main() -> Result<(), Box<dyn std::error::Error>> {
.build_client(true)
.build_server(true)
.out_dir(full_location)
.compile(
.compile_protos(
&[
"proto/pulumi/plugin.proto",
"proto/pulumi/engine.proto",
Expand Down

0 comments on commit 1b981a8

Please sign in to comment.