better string check

pull/638/head
yann300 4 years ago
parent 80c270ccd7
commit c44eb3af26
  1. 5
      apps/remix-ide/src/app/panels/terminal.js

@ -485,7 +485,8 @@ class Terminal extends Plugin {
return self._view.el return self._view.el
function wrapScript (script) { 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 ` return `
try { try {
const ret = ${script}; const ret = ${script};
@ -746,7 +747,7 @@ class Terminal extends Plugin {
} }
} }
try { try {
if (script.trim().indexOf('git') === 0) { if (script.trim().startWith('git')) {
const result = await this.call('git', 'command', script) const result = await this.call('git', 'command', script)
self.commands.html(yo`<pre>${result}</pre>`) self.commands.html(yo`<pre>${result}</pre>`)
} else { } else {

Loading…
Cancel
Save