diff options
Diffstat (limited to 'toolsrc/src/commands_help.cpp')
| -rw-r--r-- | toolsrc/src/commands_help.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/toolsrc/src/commands_help.cpp b/toolsrc/src/commands_help.cpp index 194e809b1..fd02d948e 100644 --- a/toolsrc/src/commands_help.cpp +++ b/toolsrc/src/commands_help.cpp @@ -1,6 +1,6 @@ #include "vcpkg_Commands.h" -#include "vcpkg.h" #include "vcpkg_System.h" +#include "vcpkg_info.h" namespace vcpkg { @@ -9,7 +9,7 @@ namespace vcpkg args.check_exact_arg_count(0); System::println("Vcpkg package management program version %s\n" "\n" - "See LICENSE.txt for license information.", vcpkg::version() + "See LICENSE.txt for license information.", Info::version() ); exit(EXIT_SUCCESS); } @@ -39,7 +39,7 @@ namespace vcpkg void contact_command(const vcpkg_cmd_arguments& args) { args.check_exact_arg_count(0); - System::println("Send an email to vcpkg@microsoft.com with any feedback."); + System::println("Send an email to %s with any feedback.", Info::email()); exit(EXIT_SUCCESS); } |
