Unverified Commit a77648c3 authored by bunsenstraat's avatar bunsenstraat Committed by GitHub

Merge branch 'master' into github

parents 607fa8fe 3b3ad463
......@@ -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