From 6bf9d6f38027f5ae4e5bcf949de7e1be8fe19322 Mon Sep 17 00:00:00 2001 From: Arthur Cinader Date: Wed, 20 Jul 2016 10:28:34 -0400 Subject: [PATCH] Fix typo that cause AWS auth to fail. --- lib/transfer.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/transfer.js b/lib/transfer.js index a0644e0..6793a51 100644 --- a/lib/transfer.js +++ b/lib/transfer.js @@ -47,7 +47,7 @@ function _setup() { }); } else if (config.transferTo == 's3') { config.filesAdapter = new S3Adapter({ - accessKey: config.aws_secretAccessKey, + accessKey: config.aws_accessKeyId, secretKey: config.aws_secretAccessKey, bucket: config.aws_bucket, bucketPrefix: config.aws_bucketPrefix,