diff options
Diffstat (limited to 'build.rs')
| -rw-r--r-- | build.rs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -30,7 +30,7 @@ fn main() { .status() .expect("failed to check git dirty state"); - if status.success() { false } else { true } + !status.success() }; println!("cargo:rustc-env=GIT_HASH={git_hash}"); |
