Add permission denied command run classification

This commit is contained in:
garrettmills
2020-03-03 17:03:03 -06:00
parent 6f1de65602
commit 068f2bcd66
3 changed files with 27 additions and 3 deletions

View File

@@ -22,7 +22,7 @@ class ExecutionResult extends Injectable {
}
get clean_err() {
return this.stdout.filter(Boolean)
return this.stderr.filter(Boolean)
}
}

View File

@@ -0,0 +1,5 @@
class PermissionDeniedError extends Error {
}
module.exports = exports = PermissionDeniedError