Skip to content

Commit

Permalink
Cleanup: spaces in between if and (
Browse files Browse the repository at this point in the history
  • Loading branch information
jwolski committed Jul 29, 2015
1 parent ce5429f commit 422bc9b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/tick-cluster.js
Original file line number Diff line number Diff line change
Expand Up @@ -581,12 +581,12 @@ if (!programPath) {
process.exit(1);
}

if(!fs.existsSync(programPath)) {
if (!fs.existsSync(programPath)) {
console.log('Error: program ' + programPath + ' does not exist. Check path');
process.exit(1);
}

if(isNaN(procsToStart)) {
if (isNaN(procsToStart)) {
console.log('Error: number of processes to start is not an integer');
process.exit(1);
}
Expand Down

0 comments on commit 422bc9b

Please sign in to comment.