mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-15 01:59:02 +08:00
17 lines
416 B
C++
17 lines
416 B
C++
#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);
|
|
args.check_and_get_optional_command_arguments({});
|
|
|
|
System::println("Send an email to %s with any feedback.", Info::email());
|
|
exit(EXIT_SUCCESS);
|
|
}
|
|
}
|