Skip to content

Commit 05c0634

Browse files
authored
Merge pull request #1712 from gruntjs/fix-lint
fix lint in file.js
2 parents bc168e3 + cdd1c19 commit 05c0634

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/grunt/file.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -383,7 +383,7 @@ file.isLink = function() {
383383
var filepath = path.join.apply(path, arguments);
384384
try {
385385
return fs.lstatSync(filepath).isSymbolicLink();
386-
} catch(e) {
386+
} catch (e) {
387387
if (e.code === 'ENOENT') {
388388
// The file doesn't exist, so it's not a symbolic link.
389389
return false;

0 commit comments

Comments
 (0)