Skip to content

Commit

Permalink
fix wrong path being rerun_if_changed()
Browse files Browse the repository at this point in the history
  • Loading branch information
teh-cmc committed Jul 6, 2023
1 parent f99bec5 commit 9db49d3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion crates/re_build_tools/src/hashing.rs
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ pub fn compute_dir_hash<'a>(path: impl AsRef<Path>, extensions: Option<&'a [&'a
.with_context(|| format!("couldn't copy from {filepath:?}"))
.unwrap();

rerun_if_changed(path);
rerun_if_changed(filepath);
}

encode_hex(hasher.finalize().as_slice())
Expand Down
2 changes: 1 addition & 1 deletion crates/re_types/source_hash.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# This is a sha256 hash for all direct and indirect dependencies of this crate's build script.
# It can be safely removed at anytime to force the build script to run again.
# Check out build.rs to see how it's computed.
57a9b0fe0f20a438034beaa8924a121cc02d6f527d155b8675b182ab3a84acb3
fe95d42267d6803af40c31b57c2fe5fc59b898b7bb718e2b461400bd83fd16d6

0 comments on commit 9db49d3

Please sign in to comment.