Comparing version 1.3.1 to 1.3.2
@@ -124,5 +124,5 @@ 'use strict'; | ||
' failed:\n' + | ||
res.stdout.toString() + | ||
(res.stdout && res.stdout.toString()) + | ||
'\n' + | ||
res.stderr.toString() | ||
(res.stderr && res.stderr.toString()) | ||
); | ||
@@ -137,5 +137,5 @@ } | ||
' failed:\n' + | ||
res.stdout.toString() + | ||
(res.stdout && res.stdout).toString() + | ||
'\n' + | ||
res.stderr.toString() | ||
(res.stderr && res.stderr).toString() | ||
); | ||
@@ -142,0 +142,0 @@ } |
{ | ||
"name": "sync-rpc", | ||
"version": "1.3.1", | ||
"version": "1.3.2", | ||
"main": "lib/index.js", | ||
@@ -5,0 +5,0 @@ "description": "Run asynchronous commands synchronously by putting them in a separate process", |
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
12763