mirror of
				https://github.com/node-red/node-red.git
				synced 2025-03-01 10:36:34 +00:00 
			
		
		
		
	Library: properly handle symlinked folders
This commit is contained in:
		| @@ -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()) { | ||||
|   | ||||
		Reference in New Issue
	
	Block a user