Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
Placeholder for the next version (at the beginning of the line):
## __WORK IN PROGRESS__
-->
## __WORK IN PROGRESS__
* (@krobipd) Fixed the automatic ENOTEMPTY recovery not removing the blocking npm temp directory on npm >= 10.6.0

## 7.2.2 (2026-06-16)
* (@Apollon77) Fixed Sentry session reporting disabling

Expand Down
2 changes: 1 addition & 1 deletion packages/cli/src/lib/setup/setupInstall.ts
Original file line number Diff line number Diff line change
Expand Up @@ -431,7 +431,7 @@ export class Install {

const errorFilePath = result.stderr
.split('\n')
?.find(line => line.startsWith('npm ERR! dest'))
?.find(line => line.startsWith('npm ERR! dest') || line.startsWith('npm error dest'))
?.split('dest')[1]
.trim();

Expand Down
Loading