pinokiod 3.19.20 → 3.19.22

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/bin/git.js CHANGED
@@ -94,7 +94,7 @@ class Git {
94
94
  return this.kernel.bin.installed.conda && this.kernel.bin.installed.conda.has("git") && this.kernel.bin.installed.brew.has("gh") && gh_config_exists
95
95
  } else if (this.kernel.platform === "win32") {
96
96
  let gh_config_exists = await this.kernel.exists("config/gh")
97
- return this.kernel.bin.installed.conda && this.kernel.bin.installed.conda.has("git") && this.kernel.bin.installed.conda.has("git-bash") && this.kernel.bin.installed.brew.has("gh") && gh_config_exists
97
+ return this.kernel.bin.installed.conda && this.kernel.bin.installed.conda.has("git") && this.kernel.bin.installed.conda.has("gh") && gh_config_exists && this.kernel.bin.installed.conda.has("git-bash")
98
98
  } else {
99
99
  let gh_config_exists = await this.kernel.exists("config/gh")
100
100
  return this.kernel.bin.installed.conda && this.kernel.bin.installed.conda.has("git") && this.kernel.bin.installed.conda.has("gh") && gh_config_exists
package/kernel/shell.js CHANGED
@@ -251,6 +251,8 @@ class Shell {
251
251
 
252
252
  this.ondata({ raw: `\r\n████\r\n██ Starting Shell ${this.id}\r\n` })
253
253
 
254
+ console.log("SHELL PARAMS", params)
255
+
254
256
 
255
257
  this.start_time = Date.now()
256
258
  this.params = params
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pinokiod",
3
- "version": "3.19.20",
3
+ "version": "3.19.22",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {