Comparing version 0.4.4 to 0.4.5
var child_process = require('child_process'), | ||
isWin = /^win/.test(process.platform), | ||
Stream = require('stream'); | ||
@@ -218,2 +219,9 @@ | ||
// Hack to work around Windows oddities. | ||
if(isWin) { | ||
args = ['/s', '/c', '"' + cmd + '"'].concat(args); | ||
cmd = 'cmd'; | ||
opts.windowsVerbatimArguments = true; | ||
} | ||
if (opts.quiet) | ||
@@ -220,0 +228,0 @@ return quietExec(cmd, args, opts, callback); |
{ | ||
"name": "executive", | ||
"version": "0.4.4", | ||
"version": "0.4.5", | ||
"description": "Elegant command execution.", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
13525
312