Skip to content

Commit

Permalink
prevent recompiling by properly specifying build.rs (#1005)
Browse files Browse the repository at this point in the history
  • Loading branch information
rukai authored Feb 1, 2023
1 parent b3f1698 commit a6ea8be
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 6 deletions.
6 changes: 0 additions & 6 deletions shotover-proxy/build.rs

This file was deleted.

1 change: 1 addition & 0 deletions test-helpers/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@ use std::env;
fn main() {
let profile = env::var("PROFILE").unwrap();
println!("cargo:rustc-env=PROFILE={profile}");
println!("cargo:rerun-if-env-changed=PROFILE");
}
1 change: 1 addition & 0 deletions tokio-bin-process/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@ use std::env;
fn main() {
let profile = env::var("PROFILE").unwrap();
println!("cargo:rustc-env=PROFILE={profile}");
println!("cargo:rerun-if-env-changed=PROFILE");
}

0 comments on commit a6ea8be

Please sign in to comment.