diff options
| author | mat <git@matdoes.dev> | 2025-12-23 19:58:02 -0330 |
|---|---|---|
| committer | mat <git@matdoes.dev> | 2025-12-23 19:58:02 -0330 |
| commit | 599bbfc8ce95a2b5aefe6b22e3b8b0931b5c9581 (patch) | |
| tree | 48b708f8e41e2ccd52001bbc4c40f3b54a94ab0d /azalea-client | |
| parent | 0fdcff1909b28c5f61587ff5031c67e2880b84fc (diff) | |
| download | azalea-drasl-599bbfc8ce95a2b5aefe6b22e3b8b0931b5c9581.tar.xz | |
bump deps and avoid build.rs writing unnecessarily in some cases
Diffstat (limited to 'azalea-client')
| -rw-r--r-- | azalea-client/build.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/azalea-client/build.rs b/azalea-client/build.rs index 156f73a6..7f18092d 100644 --- a/azalea-client/build.rs +++ b/azalea-client/build.rs @@ -41,7 +41,7 @@ fn main() { let mod_rs_path = Path::new("tests/simulation/mod.rs"); let existing_mod_rs = fs::read_to_string(mod_rs_path).unwrap_or_default(); - if mod_rs == existing_mod_rs { + if mod_rs.trim() == existing_mod_rs.trim() { // this would cause the build script to run again return; } |
