[vcpkg] Fix incorrect handling of messages for permenantly disabled metrics. (#15636)

Fixes #15630
This commit is contained in:
Billy O'Neal 2021-01-14 08:41:53 -08:00 коммит произвёл GitHub
Родитель fd67439f01
Коммит 3f3d9a615a
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 7 добавлений и 1 удалений

Просмотреть файл

@ -41,6 +41,12 @@ try {
throw "Environment variable did not disable metrics."
}
# Also test that you get no message without --sendmetrics
$vcpkgOutput = Run-Vcpkg list
if ($vcpkgOutput -contains $metricsAreDisabledMessage) {
throw "Disabled metrics emit message even without --sendmetrics"
}
if (-Not (Test-Metrics-Enabled '--no-disable-metrics')) {
throw "Environment variable to disable metrics could not be overridden by switch."
}

Просмотреть файл

@ -256,7 +256,7 @@ int main(const int argc, const char* const* const argv)
metrics->set_send_metrics(*p);
}
if (args.send_metrics.value_or(true) && !metrics->metrics_enabled())
if (args.send_metrics.value_or(false) && !metrics->metrics_enabled())
{
System::print2(System::Color::warning, "Warning: passed --sendmetrics, but metrics are disabled.\n");
}