10 lines
257 B
Rust
10 lines
257 B
Rust
fn main() {
|
|
let _ = command_run::Command::with_args("./pack_assets.sh", &[""])
|
|
.enable_capture()
|
|
.run();
|
|
|
|
println!("cargo:rerun-if-changed=.git/logs/HEAD"); // genius
|
|
println!("cargo:rerun-if-changed=assets"); // genius
|
|
shadow_rs::new().unwrap();
|
|
}
|