vcpkg/toolsrc/src/commands_contact.cpp

15 lines
356 B
C++
Raw Normal View History

2017-01-28 04:49:09 +08:00
#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);
}
}