mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-04 23:31:47 +08:00
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]
|
||
|
}
|