Fixes #6060
This commit is contained in:
spalger 2016-02-01 13:16:59 -07:00 committed by Spencer Alger
parent 0fa7c90637
commit ec509d6e8a

View file

@ -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') {
@ -82,4 +82,3 @@ module.exports = function (grunt) {
.nodeify(this.async());
});
};