Merge branch 'dev' into mqtt5

This commit is contained in:
Steve-Mcl 2020-12-07 08:21:59 +00:00
commit 48d6fe5918
1 changed files with 2 additions and 1 deletions

View File

@ -102,7 +102,8 @@ function getLibraryEntry(type,path) {
var files = [];
fns.sort().filter(function(fn) {
var fullPath = fspath.join(path,fn);
var absoluteFullPath = fspath.join(root,fullPath);
// we use fs.realpathSync to also resolve Symbolic Link
var absoluteFullPath = fs.realpathSync(fspath.join(root,fullPath));
if (fn[0] != ".") {
var stats = fs.lstatSync(absoluteFullPath);
if (stats.isDirectory()) {