blob: 2be468fb8cbe076a515749197b2f3bd931973aad (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#include "pch.h"
#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);
}
}
|