Improve error message

This commit is contained in:
Alexander Karatarakis 2017-11-11 22:40:53 -08:00
parent 6ece1871b1
commit e4786a054d

View File

@ -74,8 +74,9 @@ namespace vcpkg::PostBuildLint
const fs::path include_dir = package_dir / "include";
if (!fs.exists(include_dir) || fs.is_empty(include_dir))
{
System::println(System::Color::warning,
"The folder /include is empty. This indicates the library was not correctly installed.");
System::println(
System::Color::warning,
"The folder /include is empty or not present. This indicates the library was not correctly installed.");
return LintStatus::ERROR_DETECTED;
}