mirror of
https://github.com/pnpm/pnpm.git
synced 2026-04-02 22:42:26 -04:00
* fix: warn when directory contains PATH delimiter character Add a warning when the current directory contains the PATH delimiter character (colon on macOS/Linux, semicolon on Windows). On macOS, folder names containing forward slashes (/) appear as colons (:) at the Unix layer. Since colons are PATH separators in POSIX systems, this breaks PATH injection for node_modules/.bin. close #10457 * test: add tests for PATH delimiter warning - Test warning is emitted when directory contains delimiter - Test no warning for normal directories