Skip to content
This repository was archived by the owner on Jul 29, 2024. It is now read-only.

Commit 86ead2c

Browse files
eviljohniusjuliemr
eviljohnius
authored andcommitted
fix(webdriver-manager): Avoid incompatibility between request with callback and pipe.
1 parent 7283fdf commit 86ead2c

File tree

1 file changed

+24
-17
lines changed

1 file changed

+24
-17
lines changed

bin/webdriver-manager

+24-17
Original file line numberDiff line numberDiff line change
@@ -138,23 +138,30 @@ var httpGetFile = function(fileUrl, fileName, outputDir, callback) {
138138
url: fileUrl,
139139
strictSSL: !ignoreSSL,
140140
proxy: resolveProxy(fileUrl)
141-
}
142-
request(options, function (error, response) {
143-
if (error) {
144-
fs.unlink(filePath);
145-
console.error('Error: Got error ' + error + ' from ' + fileUrl);
146-
return;
147-
}
148-
if (response.statusCode !== 200) {
149-
fs.unlink(filePath);
150-
console.error('Error: Got code ' + response.statusCode + ' from ' + fileUrl);
151-
return;
152-
}
153-
console.log(fileName + ' downloaded to ' + filePath);
154-
if (callback) {
155-
callback(filePath);
156-
}
157-
}).pipe(file);
141+
};
142+
143+
request(options)
144+
.on('response', function(response) {
145+
if (response.statusCode !== 200) {
146+
fs.unlink(filePath);
147+
console.error('Error: Got code ' + response.statusCode + ' from ' + fileUrl);
148+
}
149+
})
150+
.on('error', function(error) {
151+
fs.unlink(filePath);
152+
console.error('Error: Got error ' + error + ' from ' + fileUrl);
153+
})
154+
.on('data', function(data) {
155+
file.write(data);
156+
})
157+
.on('end', function() {
158+
file.end(function() {
159+
console.log(fileName + ' downloaded to ' + filePath);
160+
if (callback) {
161+
callback(filePath);
162+
}
163+
});
164+
});
158165
};
159166

160167
/**

0 commit comments

Comments
 (0)