2017-01-28 04:49:09 +08:00
|
|
|
#include "pch.h"
|
2017-01-13 09:41:50 +08:00
|
|
|
#include "vcpkg_Commands.h"
|
|
|
|
#include "vcpkg_System.h"
|
|
|
|
#include "vcpkg_info.h"
|
|
|
|
|
2017-01-13 14:03:57 +08:00
|
|
|
namespace vcpkg::Commands::Contact
|
2017-01-13 09:41:50 +08:00
|
|
|
{
|
2017-01-13 14:03:57 +08:00
|
|
|
void perform_and_exit(const vcpkg_cmd_arguments& args)
|
2017-01-13 09:41:50 +08:00
|
|
|
{
|
|
|
|
args.check_exact_arg_count(0);
|
2017-02-18 07:52:45 +08:00
|
|
|
args.check_and_get_optional_command_arguments({});
|
|
|
|
|
2017-01-13 09:41:50 +08:00
|
|
|
System::println("Send an email to %s with any feedback.", Info::email());
|
|
|
|
exit(EXIT_SUCCESS);
|
|
|
|
}
|
|
|
|
}
|