.clt files now can be symlinks

master 3.7.2.1
idziubenko 2 years ago
parent 511fa31b82
commit 671f318e75

@ -6549,7 +6549,8 @@ class scanDirectoryClt(_error):
stInfo = os.lstat(str(absPath))
statInfo = stInfo[stat.ST_MODE]
if fileOrDir.endswith(self.extFileTemplate) and \
stat.S_ISREG(statInfo):
(stat.S_ISREG(statInfo) or stat.S_ISLNK(statInfo)):
if (not self.filterApplyTemplates and
objVar.Get('cl_merge_set') == 'off' or
self.filterApplyTemplates and

Loading…
Cancel
Save