azure-pipelines-task-lib 4.17.2 → 4.17.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/task.js +0 -9
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "azure-pipelines-task-lib",
3
- "version": "4.17.2",
3
+ "version": "4.17.3",
4
4
  "description": "Azure Pipelines Task SDK",
5
5
  "main": "./task.js",
6
6
  "typings": "./task.d.ts",
package/task.js CHANGED
@@ -1323,9 +1323,6 @@ exports.rmRF = rmRF;
1323
1323
  */
1324
1324
  function execAsync(tool, args, options) {
1325
1325
  var tr = this.tool(tool);
1326
- tr.on('debug', function (data) {
1327
- (0, exports.debug)(data);
1328
- });
1329
1326
  if (args) {
1330
1327
  if (args instanceof Array) {
1331
1328
  tr.arg(args);
@@ -1350,9 +1347,6 @@ exports.execAsync = execAsync;
1350
1347
  */
1351
1348
  function exec(tool, args, options) {
1352
1349
  var tr = this.tool(tool);
1353
- tr.on('debug', function (data) {
1354
- (0, exports.debug)(data);
1355
- });
1356
1350
  if (args) {
1357
1351
  if (args instanceof Array) {
1358
1352
  tr.arg(args);
@@ -1377,9 +1371,6 @@ exports.exec = exec;
1377
1371
  */
1378
1372
  function execSync(tool, args, options) {
1379
1373
  var tr = this.tool(tool);
1380
- tr.on('debug', function (data) {
1381
- (0, exports.debug)(data);
1382
- });
1383
1374
  if (args) {
1384
1375
  if (args instanceof Array) {
1385
1376
  tr.arg(args);