fix pack_assets.sh

This commit is contained in:
Simon Gardling 2022-03-09 10:37:13 -05:00
parent 070293b1d7
commit b9f4e86a43
2 changed files with 3 additions and 2 deletions

View File

@ -1,3 +1,4 @@
#!/bin/bash
rm -fr data.tar.zst | true
tar -I 'zstd --ultra -22' -cf data.tar.zst assets/*.*
cd assets
tar -I 'zstd --ultra -22' -cf ../data.tar.zst *.*

View File

@ -425,7 +425,7 @@ impl epi::App for MathApp {
fn setup(&mut self, _ctx: &Context, _frame: &Frame, _storage: Option<&dyn Storage>) {
#[cfg(target_arch = "wasm32")]
stop_loading();
log_helper("Initialized.");
log_helper("egui app initialized.");
}
// Called each time the UI needs repainting, which may be many times per second.