From ee254b169763ef342230b7ea298243ee8def2e3b Mon Sep 17 00:00:00 2001 From: Juan Tejada Date: Fri, 18 Nov 2016 11:58:09 -0800 Subject: [PATCH] fix(build) Actually fix build --- build/tasks/publish-task.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/tasks/publish-task.js b/build/tasks/publish-task.js index e713a8722..2fd8f40fa 100644 --- a/build/tasks/publish-task.js +++ b/build/tasks/publish-task.js @@ -85,7 +85,7 @@ module.exports = (grunt) => { } function uploadToS3(filepath, key) { - grunt.log.writeln(`>> Uploading ${filename} to ${key}…`); + grunt.log.writeln(`>> Uploading ${filepath} to ${key}…`); return put(filepath, key).then((data) => { const msg = `N1 release asset uploaded: <${data.Location}|${key}>`; return postToSlack(msg).then(() => Promise.resolve(data));