pull/5370/head
aniket-engg 4 years ago committed by Aniket
parent f4c10cae05
commit 2e398a8df2
  1. 4
      apps/remix-ide/src/app/tabs/compileTab/compileTab.js

@ -111,9 +111,9 @@ class CompileTab extends Plugin {
const configFilePath = 'remix-compiler.config.js'
this.fileManager.setFileContent(configFilePath, fileContent)
this.call('hardhat', 'compile', configFilePath).then((result) => {
this.call('terminal', 'log', { type: 'info', value: result})
this.call('terminal', 'log', { type: 'info', value: result })
}).catch((error) => {
this.call('terminal', 'log', { type: 'error', value: result})
this.call('terminal', 'log', { type: 'error', value: error })
})
}
}

Loading…
Cancel
Save