fixed postprocessor args (#256)
* fixed postprocessor args * updated node builder version * temporary fix for https://github.com/nodejs/corepack/issues/612
This commit is contained in:
@@ -41,10 +41,10 @@ export class RPCClient {
|
||||
})
|
||||
}
|
||||
|
||||
private argsSanitizer(args: string) {
|
||||
private argsSanitizer(args: string): string[] {
|
||||
return args
|
||||
.split(' ')
|
||||
.map(a => a.trim().replaceAll("'", '').replaceAll('"', ''))
|
||||
.map(a => a.trim().replaceAll('"', ''))
|
||||
.filter(Boolean)
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user