mirror of
https://github.com/martinvonz/jj.git
synced 2024-11-10 14:16:24 +03:00
protos: use run_from_script()
in build.rs
`run_from_script()` is effectively the same as we did with `.expect()` (print the error to stderr and exit with an error).
This commit is contained in:
parent
c1d0c08c03
commit
b94c78545b
@ -36,8 +36,7 @@ fn main() {
|
||||
.inputs(input)
|
||||
.include("src/protos")
|
||||
.cargo_out_dir("protos")
|
||||
.run()
|
||||
.expect("protoc");
|
||||
.run_from_script();
|
||||
println!("cargo:rerun-if-changed=build.rs");
|
||||
for file in input {
|
||||
println!("cargo:rerun-if-changed={}", file);
|
||||
|
Loading…
Reference in New Issue
Block a user