Merge pull request #4299 from ethereum/fixremap

remove empty lines from remappings
pull/5370/head
yann300 12 months ago committed by GitHub
commit 0cd942d038
  1. 4
      libs/remix-ui/solidity-compiler/src/lib/logic/compileTabLogic.ts

@ -112,9 +112,9 @@ export class CompileTabLogic {
this.event.emit('startingCompilation')
if(await this.api.fileExists('remappings.txt')) {
this.api.readFile('remappings.txt').then(remappings => {
this.compiler.set('remappings', remappings.split('\n'))
this.compiler.set('remappings', remappings.split('\n').filter(Boolean))
})
}
} else this.compiler.set('remappings', [])
if (this.configFilePath) {
this.api.readFile(this.configFilePath).then( contentConfig => {
this.compiler.set('configFileContent', contentConfig)

Loading…
Cancel
Save