Skip to content

Commit f15b92e

Browse files
committed
fix incorrect message
1 parent a9dd53a commit f15b92e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/lib.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -517,8 +517,9 @@ impl Config {
517517
}
518518

519519
if self.always_configure || !build.join("CMakeCache.txt").exists() {
520-
println!("CMake project was already configured. Skipping configuration step.");
521520
run(cmd.env("CMAKE_PREFIX_PATH", cmake_prefix_path), "cmake");
521+
} else {
522+
println!("CMake project was already configured. Skipping configuration step.");
522523
}
523524

524525
let mut makeflags = None;

0 commit comments

Comments
 (0)