Commit c44eb3af authored by yann300's avatar yann300

better string check

parent 80c270cc
......@@ -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`<pre>${result}</pre>`)
} else {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment