diff --git a/apps/remix-ide/src/app/panels/terminal.js b/apps/remix-ide/src/app/panels/terminal.js index aaf8ec2f7e..3a997ba40b 100644 --- a/apps/remix-ide/src/app/panels/terminal.js +++ b/apps/remix-ide/src/app/panels/terminal.js @@ -748,9 +748,9 @@ class Terminal extends Plugin { try { if (script.trim().indexOf('git') === 0) { const result = await this.call('git', 'command', script) - self.commands.html(yo`
${result}
`) + self.commands.html(yo`
${result}
`) } else { - await this.call('scriptRunner', 'execute', script) + await this.call('scriptRunner', 'execute', script) } done() } catch (error) {