pinokiod 3.19.29 → 3.19.30
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/kernel/shell.js +2 -1
- package/package.json +1 -1
package/kernel/shell.js
CHANGED
|
@@ -461,6 +461,7 @@ class Shell {
|
|
|
461
461
|
this.persistent = params.persistent
|
|
462
462
|
}
|
|
463
463
|
this.prompt_pattern = await this.prompt(params.path)
|
|
464
|
+
console.log("Prompt Pattern", this.prompt_pattern)
|
|
464
465
|
this.cb = cb
|
|
465
466
|
console.log("This.exec")
|
|
466
467
|
let r = await this.exec(params)
|
|
@@ -490,7 +491,7 @@ class Shell {
|
|
|
490
491
|
|
|
491
492
|
//let re = /([\r\n]+[^\r\n]+)(\1)/gs
|
|
492
493
|
let re = /(.+)(\1)/gs
|
|
493
|
-
console.log("Prompt spawn")
|
|
494
|
+
console.log("Prompt spawn", this.shell)
|
|
494
495
|
let term = pty.spawn(this.shell, this.args, config)
|
|
495
496
|
let ready
|
|
496
497
|
let vt = new Terminal({
|