Skip to content

Commit

Permalink
chore: fix lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
erezrokah committed Jan 12, 2021
1 parent dd1b0b3 commit 949741a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/lm/requirements.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ const semver = require('semver')
const checkLFSFilters = async function () {
try {
const result = await execa('git', ['config', '--get-regexp', 'filter.lfs'])
return result.stdout.length > 0
return result.stdout.length !== 0
} catch (error) {
return false
}
Expand Down

0 comments on commit 949741a

Please sign in to comment.