mirror of
https://github.com/pinnacle-comp/pinnacle.git
synced 2024-11-16 07:48:11 +01:00
8 lines
173 B
Rust
8 lines
173 B
Rust
fn main() {
|
|
println!("cargo:rerun-if-changed=api/lua");
|
|
|
|
std::process::Command::new("/bin/sh")
|
|
.arg("install_libs.sh")
|
|
.spawn()
|
|
.unwrap();
|
|
}
|