diff options
| author | Alexander Karatarakis <alkarata@microsoft.com> | 2017-04-07 16:17:54 -0700 |
|---|---|---|
| committer | Alexander Karatarakis <alkarata@microsoft.com> | 2017-04-07 16:22:35 -0700 |
| commit | 18fa18a07b97aa69826562738e498fbd2317e091 (patch) | |
| tree | b6d65208a737763cfc4466d776aa58598a3e57c9 /toolsrc/src/commands_ci.cpp | |
| parent | 285bbe0d8a1a14afc217b06790e1c99e1200a14b (diff) | |
| download | vcpkg-18fa18a07b97aa69826562738e498fbd2317e091.tar.gz vcpkg-18fa18a07b97aa69826562738e498fbd2317e091.zip | |
Remove PackageSpec.display_name()
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()); |
