Skip to content

Commit

Permalink
Merge pull request #286 from blackflux/dev
Browse files Browse the repository at this point in the history
[Gally]: master <- dev
  • Loading branch information
simlu committed Dec 3, 2018
2 parents c49bb29 + 15df702 commit f8972af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/subtasks/depcheck.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ module.exports = (logger, dir) => new Promise((resolve, reject) => {
if (success && fs.existsSync(path.join(dir, 'yarn.lock'))) {
const data = spawnSync('yarn', ['check', '--integrity', '--verify-tree', '--silent'], { cwd: dir });
const [stdout, stderr] = [String(data.stdout), String(data.stderr)];
success = stderr === '';
success = ['', 'null'].includes(stderr);
if (!success) {
logger.error(stdout);
logger.error(stderr);
Expand Down

0 comments on commit f8972af

Please sign in to comment.