Skip to content

Commit f5f2a64

Browse files
committed
Fixed wrong directory level in autoload path.
1 parent fcfd205 commit f5f2a64

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bin/dcg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ use Symfony\Component\Filesystem\Filesystem;
1010
// Composer package.
1111
$autoloader = file_exists(__DIR__ . '/../vendor/autoload.php')
1212
? require __DIR__ . '/../vendor/autoload.php'
13-
: require __DIR__ . '/../../../vendor/autoload.php';
13+
: require __DIR__ . '/../../../autoload.php';
1414

1515
// Create an application.
1616
$application = dcg_create_application();

0 commit comments

Comments
 (0)