@neon-rs/cli 0.0.119 → 0.0.121
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.js +1 -1
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -15107,7 +15107,7 @@ async function subdirs(dir) {
|
|
|
15107
15107
|
const entries = await promises_namespaceObject.readdir(dir);
|
|
15108
15108
|
let dirs = [];
|
|
15109
15109
|
for (const entry of entries) {
|
|
15110
|
-
if ((await promises_namespaceObject.stat(entry)).isDirectory()) {
|
|
15110
|
+
if ((await promises_namespaceObject.stat(external_node_path_namespaceObject.join(dir, entry))).isDirectory()) {
|
|
15111
15111
|
dirs.push(entry);
|
|
15112
15112
|
}
|
|
15113
15113
|
}
|