Skip to content
This repository has been archived by the owner on Apr 25, 2023. It is now read-only.

Commit

Permalink
JsHint error fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
ofrogon committed Jul 3, 2016
1 parent 1eaf15a commit 0e57bbb
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions lib/fileManagement.js
Original file line number Diff line number Diff line change
Expand Up @@ -242,14 +242,15 @@ FileObj.prototype = {
unCleanList = {
ignore: [],
move: []
};
},
thisFile;

for (var i = 0, length = files.length; i < length; i++) {
f = path.normalize(files[i]);
if (regex.containAsterisk.test(files[i]) || fileName !== "*") {
var thisFile = fileName;
thisFile = fileName;
} else {
var thisFile = path.basename(f, path.extname(f));
thisFile = path.basename(f, path.extname(f));
}

// Try to find the min file here
Expand Down

0 comments on commit 0e57bbb

Please sign in to comment.