Browse Source

move debug

Jonathan Kelley 1 year ago
parent
commit
99748a611c
1 changed files with 2 additions and 1 deletions
  1. 2 1
      packages/interpreter/build.rs

+ 2 - 1
packages/interpreter/build.rs

@@ -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");