making a minor fix

Carelessly forgot to space out the message correctly
This commit is contained in:
Ralph Dugue 2017-07-05 15:23:00 -04:00 committed by GitHub
parent 4d424b9d25
commit 0874f77d0b

View File

@ -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;
}