vcpkg/scripts/azure-pipelines/windows/Get-ChangedFiles.ps1
nicole mazzuca 9606917c81
[vcpkg ci] Update formatting CI (#12314)
* stage checking formatting

this means that the port CI won't run if the formatting failed

* fix invalid names

* add formatting of manifests

* fix dependsOn name

* fix a thing

* CRs

* oops, typo
2020-07-07 14:09:33 -07:00

10 lines
158 B
PowerShell

[CmdletBinding()]
Param(
[Parameter(Mandatory=$True)]
[string]$Directory
)
git status --porcelain $Directory | ForEach-Object {
(-split $_)[1]
}