We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 480a920 commit 2fe0591Copy full SHA for 2fe0591
rector.php
@@ -15,10 +15,10 @@
15
$drupalFinder->locateRoot(__DIR__);
16
$drupalRoot = $drupalFinder->getDrupalRoot();
17
$parameters->set(Option::AUTOLOAD_PATHS, [
18
- $drupalRoot . '/core',
19
- $drupalRoot . '/modules',
20
- $drupalRoot . '/profiles',
21
- $drupalRoot . '/themes'
+ \realpath($drupalRoot . '/core'),
+ \realpath($drupalRoot . '/modules'),
+ \realpath($drupalRoot . '/profiles'),
+ \realpath($drupalRoot . '/themes')
22
]);
23
24
$parameters->set(Option::SKIP, ['*/upgrade_status/tests/modules/*']);
0 commit comments