diff options
| author | Alexander Karatarakis <alkarata@microsoft.com> | 2017-01-25 16:44:56 -0800 |
|---|---|---|
| committer | Alexander Karatarakis <alkarata@microsoft.com> | 2017-01-25 16:44:56 -0800 |
| commit | 25872147c1016fea74aac5627880fb7d40c0c1f7 (patch) | |
| tree | 7500dfd4b1bdb375402872868624d4f476580e1e /toolsrc/src/commands_edit.cpp | |
| parent | 1924c0a13924dbe29be4c38ba9a25734b44ee004 (diff) | |
| download | vcpkg-25872147c1016fea74aac5627880fb7d40c0c1f7.tar.gz vcpkg-25872147c1016fea74aac5627880fb7d40c0c1f7.zip | |
Add quotes are port name in error message
Diffstat (limited to 'toolsrc/src/commands_edit.cpp')
| -rw-r--r-- | toolsrc/src/commands_edit.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toolsrc/src/commands_edit.cpp b/toolsrc/src/commands_edit.cpp index 3297b5295..cb457a9e2 100644 --- a/toolsrc/src/commands_edit.cpp +++ b/toolsrc/src/commands_edit.cpp @@ -11,7 +11,7 @@ namespace vcpkg::Commands::Edit const std::string port_name = args.command_arguments.at(0); const fs::path portpath = paths.ports / port_name; - Checks::check_exit(fs::is_directory(portpath), "Could not find port named %s", port_name); + Checks::check_exit(fs::is_directory(portpath), R"(Could not find port named "%s")", port_name); // Find editor std::wstring env_EDITOR = System::wdupenv_str(L"EDITOR"); |
