Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fixes #6060
  • Loading branch information
spalger authored and Spencer Alger committed Feb 1, 2016
1 parent 33c6c5b commit e7ff930
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions tasks/build/downloadNodeBuilds.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ module.exports = function (grunt) {
// use an async iife to store promise for download
// then store platform in active downloads list
// which we will read from in the finish task
platform.downloadPromise = (async () => {
platform.downloadPromise = (async function () {
grunt.file.mkdir(downloadDir);

if (platform.name === 'windows') {
Expand Down Expand Up @@ -82,4 +82,3 @@ module.exports = function (grunt) {
.nodeify(this.async());
});
};

0 comments on commit e7ff930

Please sign in to comment.