no code changes here

This commit is contained in:
Simon Gardling 2022-03-21 00:57:16 -04:00
parent 6bb59de96c
commit cfd9310232
2 changed files with 6 additions and 4 deletions

View File

@ -16,4 +16,5 @@
8. nth derivative support (again)
9. Update function tests
10. rewrite FunctionEntry to move more information and handling to egui_app (such as config changes)
11. Threading
11. Threading
12. fix integral display

View File

@ -1,9 +1,10 @@
fn main() {
// rebuild if new commit or contents of `assets` folder changed
println!("cargo:rerun-if-changed=.git/logs/HEAD");
println!("cargo:rerun-if-changed=assets");
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();
}