Skip to content

Commit

Permalink
fixed creating local directory (#77)
Browse files Browse the repository at this point in the history
  • Loading branch information
wachterjohannes committed Mar 3, 2017
1 parent 70ba441 commit bc8c763
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Bundle/DependencyInjection/NanbandoExtension.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public function load(array $configs, ContainerBuilder $container)
$config = $this->processConfiguration($configuration, $configs);

$filesystem = new Filesystem();
$filesystem->mkdir($config['storage']['local_directory']);
$filesystem->mkdir(Path::join([getcwd(), NANBANDO_DIR, $config['storage']['local_directory']]));

$container->setParameter('nanbando.name', $config['name']);
$container->setParameter('nanbando.environment', $config['environment']);
Expand Down

0 comments on commit bc8c763

Please sign in to comment.