aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/src/commands_contact.cpp
diff options
context:
space:
mode:
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..3e3ebc2b4
--- /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::Contact
+{
+ void perform_and_exit(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);
+ }
+}