diff options
| author | Robert Schumacher <roschuma@microsoft.com> | 2019-11-22 16:08:34 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-11-22 16:08:34 -0800 |
| commit | cda348b6a3f1850a905b983cbf93642dc24cbc4a (patch) | |
| tree | 8b9808cb2a2c9c919ec2d3bdf3458148d0f1e39a /scripts | |
| parent | ae74e0bfd37c3a0a0a096acfc0cf0851582b569d (diff) | |
| parent | 0a0440c1a89037866f091dae33a3859f40f41fa2 (diff) | |
| download | vcpkg-cda348b6a3f1850a905b983cbf93642dc24cbc4a.tar.gz vcpkg-cda348b6a3f1850a905b983cbf93642dc24cbc4a.zip | |
Merge pull request #9080 from dan-shaw/telemetry-update
[vcpkg] update telemetry
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/bootstrap.ps1 | 8 | ||||
| -rw-r--r-- | scripts/bootstrap.sh | 6 |
2 files changed, 14 insertions, 0 deletions
diff --git a/scripts/bootstrap.ps1 b/scripts/bootstrap.ps1 index d2632e57b..3817fd691 100644 --- a/scripts/bootstrap.ps1 +++ b/scripts/bootstrap.ps1 @@ -412,6 +412,14 @@ if ($ec -ne 0) } Write-Host "`nBuilding vcpkg.exe... done.`n" +Write-Host @" +Telemetry +--------- +vcpkg collects usage data in order to help us improve your experience. The data collected by Microsoft is anonymous. You can opt-out of telemetry by re-running bootstrap-vcpkg.bat with -disableMetrics. +Read more about vcpkg telemetry at docs/about/privacy.md + +"@ + Write-Verbose "Placing vcpkg.exe in the correct location" Copy-Item "$vcpkgReleaseDir\vcpkg.exe" "$vcpkgRootDir\vcpkg.exe" diff --git a/scripts/bootstrap.sh b/scripts/bootstrap.sh index 55859d1f8..0af6b37ff 100644 --- a/scripts/bootstrap.sh +++ b/scripts/bootstrap.sh @@ -262,3 +262,9 @@ mkdir -p "$buildDir" rm -rf "$vcpkgRootDir/vcpkg" cp "$buildDir/vcpkg" "$vcpkgRootDir/" + +echo "Telemetry" +echo "---------" +echo "vcpkg collects usage data in order to help us improve your experience. The data collected by Microsoft is anonymous. You can opt-out of telemetry by re-running bootstrap-vcpkg.sh with -disableMetrics" +echo "Read more about vcpkg telemetry at docs/about/privacy.md" +echo ""
\ No newline at end of file |
