Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion tasks/lambda_deploy.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,8 @@ module.exports = function (grunt) {
if(err.statusCode === 404) {
grunt.fail.warn('Unable to find lambda function ' + deploy_function + ', verify the lambda function name and AWS region are correct.');
} else {
grunt.fail.warn('AWS API request failed, check your AWS credentials, region and permissions are correct.');
grunt.log.error('AWS API request failed with ' + err.statusCode + ' - ' + err);
grunt.fail.warn('Check your AWS credentials, region and permissions are correct.');
}
}

Expand Down