From ee6b8d056ab644e64a70d940b35a99534afbed47 Mon Sep 17 00:00:00 2001 From: ibrahim0814 Date: Tue, 12 Nov 2019 14:04:13 -0800 Subject: [PATCH] comment out task --- index.js | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/index.js b/index.js index 91514f7..f1477fb 100644 --- a/index.js +++ b/index.js @@ -44,17 +44,17 @@ try { }); - const command = `bash <(curl -s https://codecov.io/bash) -t ${token} -n ${name} -F ${flags} -f ${file}` - exec(command, (err, stdout, stderr) => { - if (err) { - //some err occurred - console.error(err) - } else { - // the *entire* stdout and stderr (buffered) - console.log(`stdout: ${stdout}`); - console.log(`stderr: ${stderr}`); - } - }); +// const command = `bash <(curl -s https://codecov.io/bash) -t ${token} -n ${name} -F ${flags} -f ${file}` +// exec(command, (err, stdout, stderr) => { +// if (err) { +// //some err occurred +// console.error(err) +// } else { +// // the *entire* stdout and stderr (buffered) +// console.log(`stdout: ${stdout}`); +// console.log(`stderr: ${stderr}`); +// } +// }); } catch (error) { core.setFailed(error.message);