pinokiod 3.15.9 → 3.15.11

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.
@@ -720,7 +720,8 @@ class Bin {
720
720
  if (this.kernel.shell) {
721
721
  this.kernel.shell.reset()
722
722
  }
723
- await this.init()
723
+
724
+ // await this.init()
724
725
  }
725
726
  async check_installed(r, dependencies) {
726
727
  if (Array.isArray(r.name)) {
package/kernel/procs.js CHANGED
@@ -37,6 +37,7 @@ class Procs {
37
37
  })
38
38
  }
39
39
  async get_pids (stdout) {
40
+ console.log("get_pids", stdout)
40
41
  // console.log("get_pids size", stdout.length)
41
42
  const results = [];
42
43
  let pids = new Set()
@@ -145,6 +146,7 @@ class Procs {
145
146
  },
146
147
  input: true
147
148
  }, (e) => {
149
+ console.log({ state: e.state, cls })
148
150
  if (e.state && e.state.includes(cls)) {
149
151
  console.log({ port_running: this.port_running })
150
152
  if (this.port_running) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pinokiod",
3
- "version": "3.15.9",
3
+ "version": "3.15.11",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {