We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0fa7c90 commit ec509d6Copy full SHA for ec509d6
1 file changed
tasks/build/downloadNodeBuilds.js
@@ -37,7 +37,7 @@ module.exports = function (grunt) {
37
// use an async iife to store promise for download
38
// then store platform in active downloads list
39
// which we will read from in the finish task
40
- platform.downloadPromise = (async () => {
+ platform.downloadPromise = (async function () {
41
grunt.file.mkdir(downloadDir);
42
43
if (platform.name === 'windows') {
@@ -82,4 +82,3 @@ module.exports = function (grunt) {
82
.nodeify(this.async());
83
});
84
};
85
-
0 commit comments