We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 7d3dca2 + e9dbeb8 commit 43e78ffCopy full SHA for 43e78ff
2 files changed
CHANGELOG.md
@@ -1,5 +1,11 @@
1
# Changelog
2
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
9
## 6.0.0 - 2026-02-07
10
11
### Changed
src/Ping/OutputDiff.php
@@ -110,7 +110,7 @@ private function output(): Attempt
110
return $this
111
->processes
112
->execute($this->command)
113
- ->flatMap(static fn($process) => $process->wait()->match(
+ ->flatMap(fn($process) => $process->wait()->match(
114
Attempt::result(...),
115
fn() => Attempt::error(new \RuntimeException(\sprintf(
116
'Failed to run command "%s"',
0 commit comments