mirror of
https://github.com/Kitware/CMake.git
synced 2026-08-09 17:18:18 +00:00
The '--target' completion parsed 'cmake --build --target help' with a sed pattern whose leading '...' matched any three characters, so the header line yielded a bogus 'following' candidate. Anchor the pattern to literal dots. Also note in the user-interaction guide that 'make' target tab-completion is provided by the external bash-completion package, which may hide the plain '<target>' name when a '<target>/fast' variant exists, and recommend 'cmake --build --target' completion instead. Fixes: #27873