diff options
| author | Alexander Karatarakis <alkarata@microsoft.com> | 2017-03-22 13:28:10 -0700 |
|---|---|---|
| committer | Alexander Karatarakis <alkarata@microsoft.com> | 2017-03-22 13:28:10 -0700 |
| commit | ca3e3c125ad550ff18ec732a73f6d9c155caf793 (patch) | |
| tree | 8bc2741c76edc4e4980d6e8f0727a245e977410e /toolsrc/src/PostBuildLint.cpp | |
| parent | 5f3597927266a0b40172ba73c583fb0da5d3404e (diff) | |
| download | vcpkg-ca3e3c125ad550ff18ec732a73f6d9c155caf793.tar.gz vcpkg-ca3e3c125ad550ff18ec732a73f6d9c155caf793.zip | |
Reorder post build end-message
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 00a6eabe6..462dbaa0f 100644 --- a/toolsrc/src/PostBuildLint.cpp +++ b/toolsrc/src/PostBuildLint.cpp @@ -706,7 +706,6 @@ namespace vcpkg::PostBuildLint { System::println("-- Performing post-build validation"); const size_t error_count = perform_all_checks_and_return_error_count(spec, paths); - System::println("-- Performing post-build validation done"); if (error_count != 0) { @@ -714,6 +713,8 @@ namespace vcpkg::PostBuildLint System::println(System::color::error, "Found %u error(s). Please correct the portfile:\n %s", error_count, portfile.string()); } + System::println("-- Performing post-build validation done"); + return error_count; } } |
