some refactoring

This commit is contained in:
Simon Gardling
2022-03-10 09:28:28 -05:00
parent 7fde76f032
commit a754dcf71c
4 changed files with 83 additions and 71 deletions

View File

@@ -1,9 +1,9 @@
fn main() {
let _ = command_run::Command::with_args("./pack_assets.sh", &[""])
.enable_capture()
.run();
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();
println!("cargo:rerun-if-changed=.git/logs/HEAD"); // genius
println!("cargo:rerun-if-changed=assets"); // genius
shadow_rs::new().unwrap();
}