mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-10 06:34:20 +00:00
debug windows build
This commit is contained in:
parent
e02e41d6f1
commit
8df87c64c0
1 changed files with 3 additions and 1 deletions
|
@ -8,7 +8,9 @@ fn main() {
|
|||
let hash = hash_ts_files();
|
||||
|
||||
// If the hash matches the one on disk, we're good and don't need to update bindings
|
||||
if include_str!("src/js/hash.txt").trim() == hash.to_string() {
|
||||
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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue