vcpkg/toolsrc/src/commands_contact.cpp
2017-08-31 18:13:12 -07:00

23 lines
540 B
C++

#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);
}
}