aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/src/commands_contact.cpp
diff options
context:
space:
mode:
authorAlexander Karatarakis <alkarata@microsoft.com>2017-01-12 17:41:50 -0800
committerAlexander Karatarakis <alkarata@microsoft.com>2017-01-12 17:47:53 -0800
commit8e1ed2c9a95fa5b9e0bb0a9849a6e20878696f8c (patch)
tree63f05d6d03d0a2b6567deb8ece99012ef89bb270 /toolsrc/src/commands_contact.cpp
parentdf2a05e8546281135c6ea12430734d74371bcf46 (diff)
downloadvcpkg-8e1ed2c9a95fa5b9e0bb0a9849a6e20878696f8c.tar.gz
vcpkg-8e1ed2c9a95fa5b9e0bb0a9849a6e20878696f8c.zip
Place contact and version commands in different cpp files
Diffstat (limited to 'toolsrc/src/commands_contact.cpp')
-rw-r--r--toolsrc/src/commands_contact.cpp13
1 files changed, 13 insertions, 0 deletions
diff --git a/toolsrc/src/commands_contact.cpp b/toolsrc/src/commands_contact.cpp
new file mode 100644
index 000000000..5bd1c1a67
--- /dev/null
+++ b/toolsrc/src/commands_contact.cpp
@@ -0,0 +1,13 @@
+#include "vcpkg_Commands.h"
+#include "vcpkg_System.h"
+#include "vcpkg_info.h"
+
+namespace vcpkg::Commands
+{
+ void contact_command(const vcpkg_cmd_arguments& args)
+ {
+ args.check_exact_arg_count(0);
+ System::println("Send an email to %s with any feedback.", Info::email());
+ exit(EXIT_SUCCESS);
+ }
+}