Skip to content

Commit 9bba22d

Browse files
committed
added $config paths to include built configs
1 parent 5f3d05c commit 9bba22d

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/Plugin.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -234,6 +234,10 @@ public function preparePath(PackageInterface $package, $path)
234234
$path = substr($path, 1);
235235
}
236236

237+
if (strncmp($path, '$', 1) === 0) {
238+
$path = Builder::path(substr($path, 1));
239+
}
240+
237241
if (!$this->getFilesystem()->isAbsolutePath($path)) {
238242
$prefix = $package instanceof RootPackageInterface
239243
? $this->getBaseDir()

0 commit comments

Comments
 (0)