Skip to content

Commit 82dc592

Browse files
authored
Merge pull request #54 from gnzlbg/bf
fix incorrect message
2 parents a9dd53a + f15b92e commit 82dc592

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)