Fix realpath() failing on Windows
parent
117e09ca48
commit
c774d41a9c
|
@ -99,8 +99,10 @@ class AutoloadGenerator
|
||||||
|
|
||||||
$filesystem = new Filesystem();
|
$filesystem = new Filesystem();
|
||||||
$filesystem->ensureDirectoryExists($config->get('vendor-dir'));
|
$filesystem->ensureDirectoryExists($config->get('vendor-dir'));
|
||||||
$basePath = $filesystem->normalizePath(realpath(getcwd()));
|
// Do not remove double realpath() calls.
|
||||||
$vendorPath = $filesystem->normalizePath(realpath($config->get('vendor-dir')));
|
// Fixes failing Windows realpath() implementation.
|
||||||
|
$basePath = $filesystem->normalizePath(realpath(realpath(getcwd())));
|
||||||
|
$vendorPath = $filesystem->normalizePath(realpath(realpath($config->get('vendor-dir'))));
|
||||||
$useGlobalIncludePath = (bool) $config->get('use-include-path');
|
$useGlobalIncludePath = (bool) $config->get('use-include-path');
|
||||||
$prependAutoloader = $config->get('prepend-autoloader') === false ? 'false' : 'true';
|
$prependAutoloader = $config->get('prepend-autoloader') === false ? 'false' : 'true';
|
||||||
$targetDir = $vendorPath.'/'.$targetDir;
|
$targetDir = $vendorPath.'/'.$targetDir;
|
||||||
|
|
Loading…
Reference in New Issue