Skip to content

Commit 0341668

Browse files
committed
resolve undefined error
1 parent 2f04bc2 commit 0341668

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

bin/helpers/util.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ exports.getErrorCodeFromErr = (err) => {
5252

5353
exports.sendUsageReport = (bsConfig, args, message, message_type, error_code) => {
5454
usageReporting.send({
55-
args: args,
55+
cli_args: args,
5656
message: message,
5757
message_type: message_type,
5858
error_code: error_code,

bin/helpers/zipUpload.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ const uploadCypressZip = (bsConfig, filePath) => {
2020
}
2121
}
2222

23+
let responseData = null;
2324
request.post(options, function (err, resp, body) {
2425
if (err) {
2526
reject(err);

0 commit comments

Comments
 (0)