machinepack-process
Advanced tools
Comparing version 1.1.0 to 1.2.0
@@ -39,2 +39,7 @@ module.exports = { | ||
forbidden: { | ||
friendlyName: 'forbidden', | ||
description: 'Insufficient permissions to spawn process from the specified path (i.e. you might need to use `chown`/`chmod`)' | ||
}, | ||
noSuchDir: { | ||
@@ -91,2 +96,5 @@ friendlyName: 'no such directory', | ||
} | ||
if (err.code==='EACCES') { | ||
return exits.forbidden(); | ||
} | ||
} | ||
@@ -93,0 +101,0 @@ // console.log('errno',err.errno); |
{ | ||
"name": "machinepack-process", | ||
"version": "1.1.0", | ||
"version": "1.2.0", | ||
"description": "Work with child procs and the running process.", | ||
@@ -5,0 +5,0 @@ "scripts": { |
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
8886
170