mirror of
https://github.com/spf13/cobra
synced 2024-11-05 21:37:14 +00:00
fix: force ForEach-Object to return array in pwsh completion (#1850)
Fixes #1847
This commit is contained in:
parent
430549841b
commit
c6b9971923
1 changed files with 1 additions and 1 deletions
|
@ -137,7 +137,7 @@ filter __%[1]s_escapeStringWithSpecialChars {
|
|||
}
|
||||
|
||||
$Longest = 0
|
||||
$Values = $Out | ForEach-Object {
|
||||
[Array]$Values = $Out | ForEach-Object {
|
||||
#Split the output in name and description
|
||||
`+" $Name, $Description = $_.Split(\"`t\",2)"+`
|
||||
__%[1]s_debug "Name: $Name Description: $Description"
|
||||
|
|
Loading…
Reference in a new issue