e15fc83fc9
setup.sh uses the anti-pattern `for f in $(find ...); do` in several places. `find` returns one path per line, but `for` splits its arguments by words, so paths which contain spaces are incorrectly split! The correct way is `find ... | while read f; do` |
||
---|---|---|
.. | ||
generic | ||
linux | ||
mingw | ||
native | ||
nix | ||
adapters.nix | ||
common-path.nix | ||
default.nix |