Skip to content

Commit

Permalink
[BUGFIX] Create directory for new TYPO3 version
Browse files Browse the repository at this point in the history
  • Loading branch information
simonschaufi committed Apr 17, 2024
1 parent 43edbec commit 8c146e2
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions utils/generator/src/FileSystem/ConfigFilesystem.php
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,8 @@ private function createConfigurationFileIfNotExists(string $configFilePath): voi
return;
}

$parentDirectory = dirname($configFilePath);
$this->filesystem->mkdir($parentDirectory);
$this->filesystem->touch($configFilePath);
$this->filesystem->appendToFile(
$configFilePath,
Expand Down

0 comments on commit 8c146e2

Please sign in to comment.