Skip to content

Commit 6284b45

Browse files
committed
Keep file mode on FileSystem::write() with pass null on 3rd arg
1 parent 92237fa commit 6284b45

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Composer/ComposerOutdatedResponseProvider.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public function provide(): string
3434
$processResult = $composerOutdatedProcess->getOutput();
3535

3636
if (is_string($composerOutdatedFilePath)) {
37-
FileSystem::write($composerOutdatedFilePath, $processResult);
37+
FileSystem::write($composerOutdatedFilePath, $processResult, null);
3838
}
3939

4040
return $processResult;

0 commit comments

Comments
 (0)