Skip to content

Commit

Permalink
fix: fix folder presence check
Browse files Browse the repository at this point in the history
  • Loading branch information
LeChatP committed Sep 5, 2024
1 parent f62608d commit f695085
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ fn main() {
eprintln!("cargo:warning={}", err);
}
//if folder capable/ exists
if Path::new("capable").is_dir() {
if Path::new("capable/capable").is_dir() {
if let Err(err) = set_cargo_version(package_version, "capable/capable/Cargo.toml") {
eprintln!("cargo:warning={}", err);
}
Expand Down

0 comments on commit f695085

Please sign in to comment.