Fix variable name

This commit is contained in:
zodern
2020-02-24 19:36:58 -06:00
parent 8c9251b9ac
commit b7c7e329d0

View File

@@ -225,7 +225,7 @@ class SymlinkLoopChecker {
if (files.lstat(absPath).isSymbolicLink()) {
const result = files.realpath(absPath);
this._cache.set(relPath, result);
this._cache.set(relDir, result);
return result;
}