api: revert quoting of args
This commit is contained in:
parent
bb8b0dbd91
commit
b36cb64105
|
@ -81,7 +81,8 @@ class Job {
|
|||
const proc_call = [
|
||||
...prlimit,
|
||||
...unshare,
|
||||
'bash',file, ...args.map(x=>`"${x}"`)
|
||||
'bash',file,
|
||||
...args
|
||||
];
|
||||
|
||||
var stdout = '';
|
||||
|
|
Loading…
Reference in New Issue