aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/src/commands_ci.cpp
diff options
context:
space:
mode:
authorAlexander Karatarakis <alkarata@microsoft.com>2017-03-06 11:50:53 -0800
committerAlexander Karatarakis <alkarata@microsoft.com>2017-03-07 12:10:50 -0800
commit49c96dee1fa5ef97b2a6bb17f4701498f2d065fb (patch)
tree2c90a24da383be5791a4aaefbf1306c572867626 /toolsrc/src/commands_ci.cpp
parente3d962775771a00044ab9af9c7dc9b8df3e05a7e (diff)
downloadvcpkg-49c96dee1fa5ef97b2a6bb17f4701498f2d065fb.tar.gz
vcpkg-49c96dee1fa5ef97b2a6bb17f4701498f2d065fb.zip
[`ci`] Print time for succeeded builds too
Diffstat (limited to 'toolsrc/src/commands_ci.cpp')
-rw-r--r--toolsrc/src/commands_ci.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/toolsrc/src/commands_ci.cpp b/toolsrc/src/commands_ci.cpp
index ac5aaecc2..4a66b77d1 100644
--- a/toolsrc/src/commands_ci.cpp
+++ b/toolsrc/src/commands_ci.cpp
@@ -98,11 +98,6 @@ namespace vcpkg::Commands::CI
for (size_t i = 0; i < results.size(); i++)
{
- if (results[i] == BuildResult::SUCCEEDED)
- {
- continue;
- }
-
System::println("%s: %s: %dms", install_plan[i].spec.toString(), Build::to_string(results[i]), timing[i]);
}