diff options
| author | Alexander Karatarakis <alkarata@microsoft.com> | 2017-02-13 16:23:21 -0800 |
|---|---|---|
| committer | Alexander Karatarakis <alkarata@microsoft.com> | 2017-02-15 18:06:06 -0800 |
| commit | 430739c468f7ea3cc513b85339ac51c16073325c (patch) | |
| tree | 73a4f78ab335ee6b30071fe1b1249337bc0d901e /toolsrc/src/commands_ci.cpp | |
| parent | 6824cc9264d245ebd1302c27eb714250c5f7ec13 (diff) | |
| download | vcpkg-430739c468f7ea3cc513b85339ac51c16073325c.tar.gz vcpkg-430739c468f7ea3cc513b85339ac51c16073325c.zip | |
Change parameter from std::string to package_spec
Diffstat (limited to 'toolsrc/src/commands_ci.cpp')
| -rw-r--r-- | toolsrc/src/commands_ci.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toolsrc/src/commands_ci.cpp b/toolsrc/src/commands_ci.cpp index d6239b080..dd42335df 100644 --- a/toolsrc/src/commands_ci.cpp +++ b/toolsrc/src/commands_ci.cpp @@ -58,7 +58,7 @@ namespace vcpkg::Commands::CI results.push_back(result); if (result != Build::BuildResult::SUCCEEDED) { - System::println(System::color::error, Build::create_error_message(result, action.spec.toString())); + System::println(System::color::error, Build::create_error_message(result, action.spec)); continue; } const BinaryParagraph bpgh = try_load_cached_package(paths, action.spec).get_or_throw(); |
