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 59cb869 commit 8eb6660Copy full SHA for 8eb6660
src/Toolkit/src/Kit/KitSynchronizer.php
@@ -71,7 +71,7 @@ private function synchronizeComponents(Kit $kit): void
71
foreach ($finder as $file) {
72
$relativePathNameToKit = $file->getRelativePathname();
73
$relativePathName = str_replace($componentsPath.\DIRECTORY_SEPARATOR, '', $relativePathNameToKit);
74
- $componentName = $this->extractComponentName($relativePathName);
+ $componentName = $this->extractComponentName(Path::normalize($relativePathName));
75
76
$meta = null;
77
if ($this->filesystem->exists($metaJsonFile = Path::join($file->getPath(), str_replace('.html.twig', '.meta.json', $file->getBasename())))) {
0 commit comments