From 51f1fef3dcb71d60b0de21ded2c048d235f24fee Mon Sep 17 00:00:00 2001 From: Felipe Costa Date: Fri, 8 May 2020 23:46:01 +0400 Subject: [PATCH] Fix a typo in the pipeline fail message --- scan.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scan.js b/scan.js index f5bf96f..d1d0f08 100644 --- a/scan.js +++ b/scan.js @@ -32,7 +32,7 @@ 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!"); @@ -40,4 +40,4 @@ scan(region, apikey) }) .catch(err => { console.error(err); - }); \ No newline at end of file + });