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 6f5515a commit ab5e9c0Copy full SHA for ab5e9c0
packages/core/utils/plugin-symlink.js
@@ -6,7 +6,12 @@ async function getStoragePluginNames(target) {
6
const items = await readdir(target);
7
for (const item of items) {
8
if (item.startsWith('@')) {
9
- const children = await getStoragePluginNames(resolve(target, item));
+ const dirPath = resolve(target, item);
10
+ const s = await stat(dirPath);
11
+ if (!s.isDirectory()) {
12
+ continue;
13
+ }
14
+ const children = await getStoragePluginNames(dirPath);
15
plugins.push(
16
...children.map((child) => {
17
return `${item}/${child}`;
0 commit comments