Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
In bash `$@` is an array. Doing `x=$@` is assigning an array to a string. Different shells handle this differently. `$*` is explicit about wanting to concatenate the array to a list which is the behavior we are currently relying on. https://www.shellcheck.net/wiki/SC2124
- Loading branch information