mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-04 07:08:59 +08:00
9606917c81
* 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
10 lines
158 B
PowerShell
10 lines
158 B
PowerShell
[CmdletBinding()]
|
|
Param(
|
|
[Parameter(Mandatory=$True)]
|
|
[string]$Directory
|
|
)
|
|
|
|
git status --porcelain $Directory | ForEach-Object {
|
|
(-split $_)[1]
|
|
}
|