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.cpp22
1 files changed, 0 insertions, 22 deletions
diff --git a/toolsrc/src/commands_contact.cpp b/toolsrc/src/commands_contact.cpp
deleted file mode 100644
index 7f4161802..000000000
--- a/toolsrc/src/commands_contact.cpp
+++ /dev/null
@@ -1,22 +0,0 @@
-#include "pch.h"
-
-#include "vcpkg_Commands.h"
-#include "vcpkg_System.h"
-
-namespace vcpkg::Commands::Contact
-{
- const std::string& email()
- {
- static const std::string s_email = R"(vcpkg@microsoft.com)";
- return s_email;
- }
-
- void perform_and_exit(const VcpkgCmdArguments& args)
- {
- args.check_exact_arg_count(0);
- args.check_and_get_optional_command_arguments({});
-
- System::println("Send an email to %s with any feedback.", email());
- Checks::exit_success(VCPKG_LINE_INFO);
- }
-}