From 0874f77d0bb85e09664d581d0299c07ca43a388d Mon Sep 17 00:00:00 2001 From: Ralph Dugue Date: Wed, 5 Jul 2017 15:23:00 -0400 Subject: [PATCH] making a minor fix Carelessly forgot to space out the message correctly --- lib/plugins/aws/provider/awsProvider.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/plugins/aws/provider/awsProvider.js b/lib/plugins/aws/provider/awsProvider.js index 81b32025b..bcee55542 100644 --- a/lib/plugins/aws/provider/awsProvider.js +++ b/lib/plugins/aws/provider/awsProvider.js @@ -153,9 +153,9 @@ class AwsProvider { if (e.message === 'The security token included in the request is invalid') { const errorMessage = [ 'The AWS security token included in the request is invalid.', - 'Please check your ~./aws/credentials file and verify your keys are correct.', - 'More information on setting up credentials', - `can be found here: ${chalk.green('https://git.io/vXsdd')}.` + ' Please check your ~./aws/credentials file and verify your keys are correct.', + ' More information on setting up credentials', + ` can be found here: ${chalk.green('https://git.io/vXsdd')}.` ].join(''); e.message = errorMessage; }