Skip to content

Commit

Permalink
Fix a typo in the pipeline fail message
Browse files Browse the repository at this point in the history
  • Loading branch information
Felipe Costa committed May 8, 2020
1 parent 60c183e commit 51f1fef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scan.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,12 @@ scan(region, apikey)
})
.then(res => {
if (res){
console.log("Too much failues!");
console.log("Too much failures!");
process.exit(1);
}
console.log("Less failures than allowed, so let's deploy it!");
process.exit(0);
})
.catch(err => {
console.error(err);
});
});

0 comments on commit 51f1fef

Please sign in to comment.