Skip to content

Commit

Permalink
fix(sb_fs): update build.rs (#459)
Browse files Browse the repository at this point in the history
  • Loading branch information
nyannyacha authored Dec 19, 2024
1 parent 4cbeee8 commit 7172c87
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/sb_fs/build.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
use std::path::Path;

fn main() {
dbg!(Path::new("./tests/.env").exists());
println!("cargo::rerun-if-changed=tests/.env");
if Path::new("./tests/.env").exists() {
println!("cargo:rustc-cfg=dotenv")
}
Expand Down

0 comments on commit 7172c87

Please sign in to comment.