0g-storage-node/common/contract-interface/build.rs
bruno-valante a79f7bbf12
Some checks failed
abi-consistent-check / build-and-compare (push) Has been cancelled
code-coverage / unittest-cov (push) Has been cancelled
rust / check (push) Has been cancelled
rust / test (push) Has been cancelled
rust / lints (push) Has been cancelled
functional-test / test (push) Has been cancelled
Fix contract interface build cache (#172)
2024-08-27 18:08:10 +08:00

8 lines
229 B
Rust

fn main() {
if cfg!(not(feature = "dev")) {
println!("cargo:rerun-if-changed=../../storage-contracts-abis/");
} else {
println!("cargo:rerun-if-changed=../../0g-storage-contracts-dev/artifacts/");
}
}