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.
Files changed (2) hide show
  1. package/kernel/shell.js +2 -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${os.EOL}echo pinokio${os.EOL}`)
533
+ term.write(`echo pinokio${this.EOL}echo pinokio${this.EOL}`)
534
534
  }
535
535
  }, 500)
536
536
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pinokiod",
3
- "version": "3.19.27",
3
+ "version": "3.19.28",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {