Skip to content

Commit 51f1fef

Browse files
author
Felipe Costa
authored
Fix a typo in the pipeline fail message
1 parent 60c183e commit 51f1fef

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scan.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,12 @@ scan(region, apikey)
3232
})
3333
.then(res => {
3434
if (res){
35-
console.log("Too much failues!");
35+
console.log("Too much failures!");
3636
process.exit(1);
3737
}
3838
console.log("Less failures than allowed, so let's deploy it!");
3939
process.exit(0);
4040
})
4141
.catch(err => {
4242
console.error(err);
43-
});
43+
});

0 commit comments

Comments
 (0)