Skip to content
This repository has been archived by the owner on Mar 31, 2024. It is now read-only.

Commit

Permalink
[eslint] avoid babel/babel-eslint#245
Browse files Browse the repository at this point in the history
  • Loading branch information
spalger committed Feb 1, 2016
1 parent a39a07c commit 758c597
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 758c597

Please sign in to comment.