diff options
Diffstat (limited to 'toolsrc/src/commands_ci.cpp')
| -rw-r--r-- | toolsrc/src/commands_ci.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/toolsrc/src/commands_ci.cpp b/toolsrc/src/commands_ci.cpp index c7aba439a..d514d3360 100644 --- a/toolsrc/src/commands_ci.cpp +++ b/toolsrc/src/commands_ci.cpp @@ -48,7 +48,7 @@ namespace vcpkg::Commands::CI { const ElapsedTime build_timer = ElapsedTime::create_started(); counter++; - const std::string display_name = action.spec.display_name(); + const std::string display_name = action.spec.to_string(); System::println("Starting package %d/%d: %s", counter, package_count, display_name); timing.push_back(-1); @@ -97,10 +97,10 @@ namespace vcpkg::Commands::CI } catch (const std::exception& e) { - System::println(System::Color::error, "Error: Could not install package %s: %s", action.spec.display_name(), e.what()); + System::println(System::Color::error, "Error: Could not install package %s: %s", action.spec, e.what()); results.back() = BuildResult::NULLVALUE; } - System::println("Elapsed time for package %s: %s", action.spec.display_name(), build_timer.to_string()); + System::println("Elapsed time for package %s: %s", action.spec, build_timer.to_string()); } System::println("Total time taken: %s", timer.to_string()); |
