Skip to content

Commit

Permalink
Merge pull request #37 from monax3/fix-rerun
Browse files Browse the repository at this point in the history
Fix incorrect path in build.rs causing constant build-script reruns
  • Loading branch information
dtolnay authored Dec 17, 2022
2 parents f29f19d + 78d6d4b commit 935427c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ use std::path::Path;
use std::process::{self, Command};

fn main() {
println!("cargo:rerun-if-changed=build.rs");
println!("cargo:rerun-if-changed=build/build.rs");

let rustc = env::var_os("RUSTC").unwrap_or_else(|| OsString::from("rustc"));

Expand Down

0 comments on commit 935427c

Please sign in to comment.