From b060dbca9430fc5ffcff04f1061c254da271ef96 Mon Sep 17 00:00:00 2001 From: Philipp Muens Date: Mon, 5 Jun 2017 11:45:54 +0200 Subject: [PATCH] Rephrase error message for invalid template --- lib/plugins/aws/deploy/lib/validateTemplate.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/plugins/aws/deploy/lib/validateTemplate.js b/lib/plugins/aws/deploy/lib/validateTemplate.js index 89c0d10ef..0e3847ed2 100644 --- a/lib/plugins/aws/deploy/lib/validateTemplate.js +++ b/lib/plugins/aws/deploy/lib/validateTemplate.js @@ -19,7 +19,7 @@ module.exports = { this.options.region ).catch((error) => { const errorMessage = [ - 'The generated CloudFormation template is invalid:', + 'The CloudFormation template is invalid:', ` ${error.message}`, ].join(''); throw new Error(errorMessage);