You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
compgen -V arr (bash 5.3) stores the completions in the array arr instead of
printing them, but getModifiedVariableCommand did not know about it, so
`compgen -V files -G '*'` followed by "${files[@]}" produced a spurious
SC2154 "files is referenced but not assigned".
Add a compgen entry next to mapfile/readarray and a helper shaped like the
existing getPrintfVariable/getWaitVariable: parse the flags, take the argument
of -V and record it as DataArray.
Fixes#3466
0 commit comments