aboutsummaryrefslogtreecommitdiff
path: root/scripts/azure-pipelines/Format-CxxCode.ps1
diff options
context:
space:
mode:
authorBilly O'Neal <bion@microsoft.com>2021-01-13 14:05:38 -0800
committerGitHub <noreply@github.com>2021-01-13 14:05:38 -0800
commit4da47f758fb5e02fc017047e014d15174b85a848 (patch)
tree8aeb3f8203a4ca64f18a3187421f1f81402f752f /scripts/azure-pipelines/Format-CxxCode.ps1
parentc239e8251051eb86a8439b916dcc7fc81554ec53 (diff)
downloadvcpkg-4da47f758fb5e02fc017047e014d15174b85a848.tar.gz
vcpkg-4da47f758fb5e02fc017047e014d15174b85a848.zip
[vcpkg] Add sources for TLS 1.2 downloader tool. (#15516)
Diffstat (limited to 'scripts/azure-pipelines/Format-CxxCode.ps1')
-rw-r--r--scripts/azure-pipelines/Format-CxxCode.ps11
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/azure-pipelines/Format-CxxCode.ps1 b/scripts/azure-pipelines/Format-CxxCode.ps1
index a20a9ce0b..2653562a7 100644
--- a/scripts/azure-pipelines/Format-CxxCode.ps1
+++ b/scripts/azure-pipelines/Format-CxxCode.ps1
@@ -36,6 +36,7 @@ Push-Location $toolsrc
try
{
$files = Get-ChildItem -Recurse -LiteralPath "$toolsrc/src" -Filter '*.cpp'
+ $files += Get-ChildItem -Recurse -LiteralPath "$toolsrc/src" -Filter '*.c'
$files += Get-ChildItem -Recurse -LiteralPath "$toolsrc/include/vcpkg" -Filter '*.h'
$files += Get-ChildItem -Recurse -LiteralPath "$toolsrc/include/vcpkg-test" -Filter '*.h'
$files += Get-Item "$toolsrc/include/pch.h"