mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-10 06:34:20 +00:00
move debug
This commit is contained in:
parent
8df87c64c0
commit
99748a611c
1 changed files with 2 additions and 1 deletions
|
@ -10,10 +10,11 @@ fn main() {
|
|||
// If the hash matches the one on disk, we're good and don't need to update bindings
|
||||
let expected = include_str!("src/js/hash.txt").trim();
|
||||
if expected == hash.to_string() {
|
||||
panic!("Hashes match, no need to update bindings. {expected} != {hash}",);
|
||||
return;
|
||||
}
|
||||
|
||||
panic!("Hashes match, no need to update bindings. {expected} != {hash}",);
|
||||
|
||||
// Otherwise, generate the bindings and write the new hash to disk
|
||||
// Generate the bindings for both native and web
|
||||
gen_bindings("common", "common");
|
||||
|
|
Loading…
Reference in a new issue