Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions tasks/exec.js
Original file line number Diff line number Diff line change
Expand Up @@ -78,9 +78,9 @@ module.exports = function(grunt) {
// NOTE: must be < require('buffer').kMaxLength or a RangeError will be triggered
var maxBuffer = data.maxBuffer || execOptions.maxBuffer || (200*1024);

// timeout manually supportted (spawn vs exec)
// timeout manually supported (spawn vs exec)
execOptions.timeout = execOptions.timeout || data.timeout || 0;
// kill signal manually supportted (spawn vs exec)
// kill signal manually supported (spawn vs exec)
execOptions.killSignal = execOptions.killSignal || data.killSignal || 'SIGTERM';

// support shell scripts like 'npm.cmd' by default (spawn vs exec)
Expand Down