pinokiod 3.19.27 → 3.19.28
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 -2
- package/package.json +1 -1
package/kernel/shell.js
CHANGED
|
@@ -265,7 +265,7 @@ class Shell {
|
|
|
265
265
|
this.EOL = "\n"
|
|
266
266
|
}
|
|
267
267
|
}
|
|
268
|
-
console.log({ shell: this.shell, args: this.args, })
|
|
268
|
+
console.log({ shell: this.shell, args: this.args, eol: this.EOL })
|
|
269
269
|
|
|
270
270
|
// 3. path => path can be http, relative, absolute
|
|
271
271
|
this.path = params.path
|
|
@@ -530,7 +530,7 @@ class Shell {
|
|
|
530
530
|
setTimeout(() => {
|
|
531
531
|
if (!ready) {
|
|
532
532
|
ready = true
|
|
533
|
-
term.write(`echo pinokio${
|
|
533
|
+
term.write(`echo pinokio${this.EOL}echo pinokio${this.EOL}`)
|
|
534
534
|
}
|
|
535
535
|
}, 500)
|
|
536
536
|
}
|