fix(coding-agent): fix startup crash when downloading fd/ripgrep on first run

Use pipeline() instead of finished(readable.pipe(writable)) so stream
errors from abort signals are caught as promise rejections. Increase
download timeout from 10s to 120s for multi-MB archives.

closes #2066
This commit is contained in:
Mario Zechner
2026-03-14 03:57:59 +01:00
parent b90f69297b
commit 5c9ce47c53
2 changed files with 9 additions and 4 deletions

View File

@@ -2,6 +2,10 @@
## [Unreleased]
### Fixed
- Fixed startup crash when downloading `fd`/`ripgrep` on first run by using `pipeline()` instead of `finished(readable.pipe(writable))` so stream errors from timeouts are caught properly, and increased the download timeout from 10s to 120s ([#2066](https://github.com/badlogic/pi-mono/issues/2066))
## [0.58.0] - 2026-03-14
### New Features