apn-app-manager 1.12.3 → 1.12.4
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/package.json +1 -1
- package/src/cons.js +1 -1
- package/src/util.js +1 -1
package/package.json
CHANGED
package/src/cons.js
CHANGED
package/src/util.js
CHANGED
|
@@ -381,7 +381,7 @@ function str(strings, ...keys) {
|
|
|
381
381
|
function handleDir(dirName, filesOnly, fileTypes, levelsToParse, startAtLevel, parseLevel, callback) {
|
|
382
382
|
const contents = fs.readdirSync(dirName, "utf8", true);
|
|
383
383
|
contents.forEach(content => {
|
|
384
|
-
const contentPath = path.
|
|
384
|
+
const contentPath = path.join(dirName, content);
|
|
385
385
|
const isFile = fs.statSync(contentPath).isFile();
|
|
386
386
|
if (!filesOnly && !isFile && startAtLevel <= parseLevel) {
|
|
387
387
|
callback(contentPath);
|