From 167916e8dd47070e4c79051ea3a1f194ce6afb85 Mon Sep 17 00:00:00 2001 From: Bryan Ashby Date: Sun, 9 Dec 2018 02:20:50 -0700 Subject: [PATCH] Fix bug in findByFullPath() --- core/file_entry.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/file_entry.js b/core/file_entry.js index bb7a4e12..9ba1c692 100644 --- a/core/file_entry.js +++ b/core/file_entry.js @@ -401,7 +401,7 @@ module.exports = class FileEntry { // Checkums may have changed and are not validated here. static findByFullPath(fullPath, cb) { // first, basic by-filename lookup. - FileEntry.findByFileNameWildcard(paths.basename(fuillPath), (err, entries) => { + FileEntry.findByFileNameWildcard(paths.basename(fullPath), (err, entries) => { if(err) { return cb(err); }