Skip to content

Commit

Permalink
Fix broken syncLoop function
Browse files Browse the repository at this point in the history
  • Loading branch information
joeuhren committed Mar 20, 2021
1 parent 41f7500 commit d2521a8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/explorer.js
Original file line number Diff line number Diff line change
Expand Up @@ -754,10 +754,10 @@ module.exports = {
if (shouldExit && exit) {
// exit if we're done
exit();
} else {
// stop the loop if we're done
return;
}

// stop the loop if we're done
return;
}

// if we're not finished
Expand Down

0 comments on commit d2521a8

Please sign in to comment.