mirror of
https://github.com/0glabs/0g-storage-node.git
synced 2025-01-13 00:25:18 +00:00
2e1d076460
* update modules
31 lines
1.3 KiB
Rust
31 lines
1.3 KiB
Rust
// use std::process::Command;
|
|
|
|
// const INSTALL_ERROR_MESSAGE: &str =
|
|
// "Install dependencies for contract fail, try to run `yarn` in folder '0g-storage-contracts'";
|
|
// const COMPILE_ERROR_MESSAGE: &str =
|
|
// "Compile solidity contracts fail, try to run `yarn compile` in folder '0g-storage-contracts'";
|
|
|
|
fn main() {
|
|
// if cfg!(feature = "compile-contracts") {
|
|
// println!("cargo:rerun-if-changed=../../0g-storage-contracts/contracts/");
|
|
// println!("cargo:rerun-if-changed=../../0g-storage-contracts/hardhat.config.ts");
|
|
|
|
// let output = Command::new("yarn")
|
|
// .arg("--cwd")
|
|
// .arg("../../0g-storage-contracts")
|
|
// .status()
|
|
// .expect(INSTALL_ERROR_MESSAGE);
|
|
// assert!(output.success(), "{}", INSTALL_ERROR_MESSAGE);
|
|
|
|
// let output = Command::new("yarn")
|
|
// .arg("--cwd")
|
|
// .arg("../../0g-storage-contracts")
|
|
// .arg("compile")
|
|
// .status()
|
|
// .expect(COMPILE_ERROR_MESSAGE);
|
|
// assert!(output.success(), "{}", COMPILE_ERROR_MESSAGE);
|
|
// } else {
|
|
// println!("cargo:rerun-if-changed=../../0g-storage-contracts/artifacts/");
|
|
// }
|
|
}
|