@0x/sol-compiler
: fix build error with new node types
This commit is contained in:
parent
db98ff8cb7
commit
52cbddf054
@ -172,7 +172,7 @@ export async function compileDockerAsync(
|
|||||||
'solc', '--standard-json',
|
'solc', '--standard-json',
|
||||||
];
|
];
|
||||||
return new Promise<solc.StandardOutput>((accept, reject) => {
|
return new Promise<solc.StandardOutput>((accept, reject) => {
|
||||||
const p = spawn('docker', dockerArgs, { shell: true, stdio: ['pipe', 'inherit', 'inherit'] });
|
const p = spawn('docker', dockerArgs, { shell: true, stdio: ['pipe', 'pipe', 'inherit'] });
|
||||||
p.stdin.write(standardInputStr);
|
p.stdin.write(standardInputStr);
|
||||||
p.stdin.end();
|
p.stdin.end();
|
||||||
let fullOutput = '';
|
let fullOutput = '';
|
||||||
|
Loading…
x
Reference in New Issue
Block a user