Skip to content

Commit

Permalink
Update IsoTool.php
Browse files Browse the repository at this point in the history
  • Loading branch information
indy2kro committed Jan 19, 2025
1 parent 01ef545 commit f66534c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Cli/IsoTool.php
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ protected function extractFiles(Volume $volumeDescriptor, IsoFile $isoFile, stri
echo $fullPath . ' (location: ' . $location . ') (length: ' . $dataLength . ')' . PHP_EOL;

$dirPath = dirname($fullPath);
if (!is_dir($dirPath)) {
if (! is_dir($dirPath)) {
if (mkdir($dirPath, 0777, true) === false) {
throw new Exception('Failed to create directory: ' . $dirPath);
}
Expand Down

0 comments on commit f66534c

Please sign in to comment.