Skip to content

Commit

Permalink
Remove white space bug from autoload
Browse files Browse the repository at this point in the history
  • Loading branch information
jalogut committed Mar 18, 2018
1 parent 6836070 commit 5bd7ee8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bin/symlinker-pro
Expand Up @@ -7,7 +7,7 @@ $composerAutoload = __DIR__ . '/../../../autoload.php';
if (file_exists($composerAutoload)) {
require_once $composerAutoload;
} else {
require_once __DIR__ . ' /../vendor/autoload.php';
require_once __DIR__ . '/../vendor/autoload.php';
}

/**
Expand All @@ -29,4 +29,4 @@ $application->add(new Staempfli\Symlinker\Command\Create\CreateLinkCommand());
$application->add(new Staempfli\Symlinker\Command\Create\CreateFromFileCommand());
$application->add(new Staempfli\Symlinker\Command\Phar\SelfUpdateCommand());

$application->run();
$application->run();

0 comments on commit 5bd7ee8

Please sign in to comment.