blob: 29f0d4d274ce6776b823e4e0ac0e55857c28b857 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#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 vcpkg_cmd_arguments& 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());
exit(EXIT_SUCCESS);
}
}
|