Skip to content

Commit

Permalink
Fixed some relative paths.
Browse files Browse the repository at this point in the history
  • Loading branch information
Bilge committed Jan 21, 2017
1 parent a498f00 commit 2e00190
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Configuration/ContainerFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public static function buildFromConfiguration($path)
);

// Load basic service file + custom user configuration
$loader = new YamlFileLoader($container, new FileLocator(__DIR__ . '/../../../resources/config'));
$loader = new YamlFileLoader($container, new FileLocator(__DIR__ . '/../../resources/config'));
$loader->load('formatter.yml');
$loader->load('linters.yml');
$loader->load('parameters.yml');
Expand Down
2 changes: 1 addition & 1 deletion src/Console/Helper/PathsHelper.php
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ public function __construct(
*/
public function getGrumPHPPath()
{
$path = __DIR__ . '/../../../../';
$path = __DIR__ . '/../../..';

return $this->getRelativePath($path);
}
Expand Down

0 comments on commit 2e00190

Please sign in to comment.