Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(package-linker): Fix issue with .bin folder missing when using th…
…e `--modules-folder` flag (yarnpkg#3724, yarnpkg#4297) **Summary** This PR fixes yarnpkg#3724 and yarnpkg#4297 where `install` was not installing binary symlinks to the correct location when the `--modules-folder` flag was provided. **Test plan** Manual CLI tests: Before: ``` > yarn --modules-folder /var/foo > (ls /var/foo/.bin 2>1 > /dev/null && echo "found") || echo "not found" not found ``` After: ``` > yarn --modules-folder /var/foo > (ls /var/foo/.bin 2>1 > /dev/null && echo "found") || echo "not found" found ```
- Loading branch information