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
fix: protect ${a[@]+"${a[@]}"} from IFS in Bash 5.2
In Bash 5.2, when IFS is an empty string, ${a[@]+"${a[@]}"} expands to
a single word containing all the elements of the array `a` being
joined. We need to ensure IFS being a normal value.
0 commit comments