diff --git a/apps/remix-ide/src/app/panels/terminal.js b/apps/remix-ide/src/app/panels/terminal.js index 3a997ba40b..6e1779a78c 100644 --- a/apps/remix-ide/src/app/panels/terminal.js +++ b/apps/remix-ide/src/app/panels/terminal.js @@ -485,7 +485,8 @@ class Terminal extends Plugin { return self._view.el function wrapScript (script) { - if (script.trim().startsWith('remix.') || script.trim().startsWith('git')) return script + const isKnownScript = ['remix.', 'git'].some(prefix => script.trim().startWith(prefix)) + if (isKnownScript) return script return ` try { const ret = ${script}; @@ -746,7 +747,7 @@ class Terminal extends Plugin { } } try { - if (script.trim().indexOf('git') === 0) { + if (script.trim().startWith('git')) { const result = await this.call('git', 'command', script) self.commands.html(yo`
${result}`) } else {