Commit c627b9a7 authored by bunsenstraat's avatar bunsenstraat

Merge branch 'github' of https://github.com/ethereum/remix-project into github

parents 7fea8ad8 c277af98
......@@ -37,10 +37,11 @@ export class HardhatClient extends PluginClient {
result += msg + '\n'
})
child.stderr.on('data', (err) => {
error += `[Hardhat Compilation]: ${err.toString()}`
error += `[Hardhat Compilation]: ${err.toString()} \n`
})
child.on('close', () => {
if (error) reject(error)
if (error && result) resolve(error + result)
else if (error) reject(error)
else resolve(result)
})
})
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment