Skip to content

Commit 43e78ff

Browse files
committed
Merge branch 'develop'
* develop: specify next release fix php error when process fails
2 parents 7d3dca2 + e9dbeb8 commit 43e78ff

2 files changed

Lines changed: 7 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## 6.0.1 - 2026-02-22
4+
5+
### Fixed
6+
7+
- When the process to check for a directory change fails it raised a PHP error
8+
39
## 6.0.0 - 2026-02-07
410

511
### Changed

src/Ping/OutputDiff.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ private function output(): Attempt
110110
return $this
111111
->processes
112112
->execute($this->command)
113-
->flatMap(static fn($process) => $process->wait()->match(
113+
->flatMap(fn($process) => $process->wait()->match(
114114
Attempt::result(...),
115115
fn() => Attempt::error(new \RuntimeException(\sprintf(
116116
'Failed to run command "%s"',

0 commit comments

Comments
 (0)