api: revert quoting of args

This commit is contained in:
Thomas Hobson 2021-03-14 15:33:29 +13:00
parent bb8b0dbd91
commit b36cb64105
No known key found for this signature in database
GPG Key ID: 9F1FD9D87950DB6F
1 changed files with 2 additions and 1 deletions

View File

@ -81,7 +81,8 @@ class Job {
const proc_call = [
...prlimit,
...unshare,
'bash',file, ...args.map(x=>`"${x}"`)
'bash',file,
...args
];
var stdout = '';