aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/src/commands_help.cpp
diff options
context:
space:
mode:
authorAlexander Karatarakis <alkarata@microsoft.com>2016-11-07 17:31:41 -0800
committerAlexander Karatarakis <alkarata@microsoft.com>2016-11-07 17:31:41 -0800
commitc91d8e41b60653b652b11c641f7a5b3d3eab7f6b (patch)
tree6e81f76a7f1067bab8efdbb38e7b25338499f87f /toolsrc/src/commands_help.cpp
parent7a1bc07142577cce32ee88c8d8ef60b386d19b6a (diff)
downloadvcpkg-c91d8e41b60653b652b11c641f7a5b3d3eab7f6b.tar.gz
vcpkg-c91d8e41b60653b652b11c641f7a5b3d3eab7f6b.zip
Introduce vcpkg_info.h/cpp
Diffstat (limited to 'toolsrc/src/commands_help.cpp')
-rw-r--r--toolsrc/src/commands_help.cpp6
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);
}