debug windows build

This commit is contained in:
Jonathan Kelley 2024-03-06 17:54:20 -08:00
parent e02e41d6f1
commit 8df87c64c0
No known key found for this signature in database
GPG key ID: 1FBB50F7EB0A08BE

View file

@ -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;
}