Skip to content

Commit

Permalink
Fix bug with adding .yaml to directory names
Browse files Browse the repository at this point in the history
  • Loading branch information
petr-buchin committed Oct 6, 2020
1 parent c7592a8 commit b89ffb3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Dumper/ProjectDumper.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public function dump(ProjectInterface $project, string $projectDir)
{
@mkdir($projectDir, 0777, true);
foreach ($project->apps() as $app) {
$appDir = $projectDir.DIRECTORY_SEPARATOR.$app->name().'.yaml';
$appDir = $projectDir.DIRECTORY_SEPARATOR.$app->name();
$this->appDumper->dump($app, $appDir);
}
}
Expand Down

0 comments on commit b89ffb3

Please sign in to comment.