Trivial print out change

- An error message now contains a command that we can copy-paste directly to powershell
  vcpkg update   =>      .\\vcpkg update
  Adding two slashes to escape the output
This commit is contained in:
Oleksii Mandrychenko 2017-02-15 10:46:50 +00:00
parent 7cba4eb1a5
commit d9462fdf49

View File

@ -49,7 +49,7 @@ namespace vcpkg::Commands::Build
if (return_code != 0) if (return_code != 0)
{ {
System::println(System::color::error, "Error: building package %s failed", spec.toString()); System::println(System::color::error, "Error: building package %s failed", spec.toString());
System::println("Please ensure sure you're using the latest portfiles with `vcpkg update`, then\n" System::println("Please ensure sure you're using the latest portfiles with `.\\vcpkg update`, then\n"
"submit an issue at https://github.com/Microsoft/vcpkg/issues including:\n" "submit an issue at https://github.com/Microsoft/vcpkg/issues including:\n"
" Package: %s\n" " Package: %s\n"
" Vcpkg version: %s\n" " Vcpkg version: %s\n"