Skip to content

Commit

Permalink
fix ToolRunner - _getSpawnSyncOptions (#873)
Browse files Browse the repository at this point in the history
  • Loading branch information
DenisRumyantsev committed Oct 31, 2022
1 parent 559439e commit d883f2c
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions node/toolrunner.ts
Original file line number Diff line number Diff line change
Expand Up @@ -594,6 +594,7 @@ export class ToolRunner extends events.EventEmitter {

private _getSpawnSyncOptions(options: IExecSyncOptions): child.SpawnSyncOptions {
let result = <child.SpawnSyncOptions>{};
result.maxBuffer = 1024 * 1024 * 1024;
result.cwd = options.cwd;
result.env = options.env;
result.shell = options.shell;
Expand Down

0 comments on commit d883f2c

Please sign in to comment.