mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-15 01:29:05 +08:00
14 lines
328 B
C++
14 lines
328 B
C++
|
#include "vcpkg_Commands.h"
|
||
|
#include "vcpkg_System.h"
|
||
|
#include "vcpkg_info.h"
|
||
|
|
||
|
namespace vcpkg::Commands
|
||
|
{
|
||
|
void contact_command(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);
|
||
|
}
|
||
|
}
|