Fix contract interface build cache (#172)
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

This commit is contained in:
bruno-valante 2024-08-27 18:08:10 +08:00 committed by GitHub
parent aaba4b5da0
commit a79f7bbf12
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

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