We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ad0eecd commit d976e03Copy full SHA for d976e03
1 file changed
cppython/plugins/cmake/resolution.py
@@ -35,8 +35,7 @@ def _resolve_cmake_binary(configured_path: Path | None) -> Path | None:
35
if env_path.exists():
36
return env_path
37
logger.warning(
38
- 'CMAKE_BINARY environment variable points to non-existent path: %s. '
39
- 'Falling back to PATH lookup.',
+ 'CMAKE_BINARY environment variable points to non-existent path: %s. Falling back to PATH lookup.',
40
env_binary,
41
)
42
@@ -45,8 +44,7 @@ def _resolve_cmake_binary(configured_path: Path | None) -> Path | None:
45
44
if configured_path.exists():
46
return configured_path
47
48
- 'Configured cmake_binary path does not exist: %s. '
49
+ 'Configured cmake_binary path does not exist: %s. Falling back to PATH lookup.',
50
configured_path,
51
52
0 commit comments