diff options
| author | Robert Schumacher <roschuma@microsoft.com> | 2017-03-27 16:32:51 -0700 |
|---|---|---|
| committer | Robert Schumacher <roschuma@microsoft.com> | 2017-03-27 16:32:51 -0700 |
| commit | 125d98cb0848f490c11be5c62e1a87eded67dd7e (patch) | |
| tree | 294dd17a4f4cc0e8e358b9642855a09b06bd7075 /toolsrc/src/PostBuildLint.cpp | |
| parent | 55e7e89e217b0d5da921a1cc2097f2f64e5ee71c (diff) | |
| download | vcpkg-125d98cb0848f490c11be5c62e1a87eded67dd7e.tar.gz vcpkg-125d98cb0848f490c11be5c62e1a87eded67dd7e.zip | |
[vcpkg-lint] Improve diagnostics as identified in #857
Diffstat (limited to 'toolsrc/src/PostBuildLint.cpp')
| -rw-r--r-- | toolsrc/src/PostBuildLint.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/toolsrc/src/PostBuildLint.cpp b/toolsrc/src/PostBuildLint.cpp index 5f271d84f..65e0683f2 100644 --- a/toolsrc/src/PostBuildLint.cpp +++ b/toolsrc/src/PostBuildLint.cpp @@ -109,7 +109,8 @@ namespace vcpkg::PostBuildLint if (fs::exists(debug_share) && !fs::is_empty(debug_share)) { - System::println(System::color::warning, "No files should be present in /debug/share"); + System::println(System::color::warning, "/debug/share should not exist. Please reorganize any important files, then use\n" + " file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/share)"); return lint_status::ERROR_DETECTED; } |
